]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fassoc, Feql): Fix indentation.
authorJohn Paul Wallington <jpw@pobox.com>
Tue, 20 Apr 2004 00:17:46 +0000 (00:17 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Tue, 20 Apr 2004 00:17:46 +0000 (00:17 +0000)
src/fns.c

index 3076a000992ca45f2d97bf247d5740cb71a2667d..bb2153178646116ef872842a34c00bb89c0c64d6 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -1560,7 +1560,7 @@ assq_no_quit (key, list)
 DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0,
        doc: /* Return non-nil if KEY is `equal' to the car of an element of LIST.
 The value is actually the first element of LIST whose car equals KEY.  */)
-       (key, list)
+     (key, list)
      Lisp_Object key, list;
 {
   Lisp_Object result, car;
@@ -2138,7 +2138,7 @@ The PLIST is modified by side effects.  */)
 DEFUN ("eql", Feql, Seql, 2, 2, 0,
        doc: /* Return t if the two args are the same Lisp object.
 Floating-point numbers of equal value are `eql', but they may not be `eq'.  */)
-  (obj1, obj2)
+     (obj1, obj2)
      Lisp_Object obj1, obj2;
 {
   if (FLOATP (obj1))