changeset 54994:937db08d4048

(Fassoc, Feql): Fix indentation.
author John Paul Wallington <jpw@pobox.com>
date Tue, 20 Apr 2004 00:17:46 +0000
parents 08b0ee9a9b35
children df451d79772b
files src/fns.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/fns.c	Mon Apr 19 23:32:17 2004 +0000
+++ b/src/fns.c	Tue Apr 20 00:17:46 2004 +0000
@@ -1560,7 +1560,7 @@
 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 @@
 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))