(Fif): Reindent.
authorPavel Janík <Pavel@Janik.cz>
Tue, 13 Nov 2001 07:00:46 +0000 (07:00 +0000)
committerPavel Janík <Pavel@Janik.cz>
Tue, 13 Nov 2001 07:00:46 +0000 (07:00 +0000)
(Fand): Likewise.

src/ChangeLog
src/eval.c

index 8d34096..0bb8d9f 100644 (file)
@@ -1,5 +1,8 @@
 2001-11-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
+       * eval.c (Fif): Reindent.
+       (Fand): Likewise.
+
        * editfns.c (Fuser_real_login_name): Reindent.
        (Finsert_buffer_substring): Likewise.
        (Fcompare_buffer_substrings): Likewise.
index 8a3ee8c..2d15fa8 100644 (file)
@@ -317,7 +317,7 @@ usage: (or CONDITIONS ...)  */)
 }
 
 DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0,
-  doc: /* Eval args until one of them yields nil, then return nil.
+       doc: /* Eval args until one of them yields nil, then return nil.
 The remaining args are not evalled at all.
 If no arg yields nil, return the last arg's value.
 usage: (and CONDITIONS ...)  */)
@@ -348,7 +348,7 @@ usage: (and CONDITIONS ...)  */)
 }
 
 DEFUN ("if", Fif, Sif, 2, UNEVALLED, 0,
-  doc: /* If COND yields non-nil, do THEN, else do ELSE...
+       doc: /* If COND yields non-nil, do THEN, else do ELSE...
 Returns the value of THEN or the value of the last of the ELSE's.
 THEN must be one expression, but ELSE... can be zero or more expressions.
 If COND yields nil, and there are no ELSE's, the value is nil.