diff src/eval.c @ 40983:c767a5ebe4cd

(Fif): Reindent. (Fand): Likewise.
author Pavel Jan?k <Pavel@Janik.cz>
date Tue, 13 Nov 2001 07:00:21 +0000
parents 21597de09a0d
children 2823497a0206
line wrap: on
line diff
--- a/src/eval.c	Tue Nov 13 06:59:27 2001 +0000
+++ b/src/eval.c	Tue Nov 13 07:00:21 2001 +0000
@@ -317,7 +317,7 @@
 }
 
 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 @@
 }
 
 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.