]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 8d34096f1bc4727a8cbc55641ed7f3ba7e97d04c..0bb8d9feac15fc7718e96fb002474fec3949abdb 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 8a3ee8cb761f3ef70f433c93d14a4e2399a1c9fe..2d15fa87431a698ea98fa0f4af467aa24f65f0b3 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.