# HG changeset patch # User Pavel Jank # Date 1005634821 0 # Node ID c767a5ebe4cd7e5e5c045571c9966e6e7de35c97 # Parent 180d1f30b041fba6c3dc48c3c21ce9b0e6cfec6b (Fif): Reindent. (Fand): Likewise. diff -r 180d1f30b041 -r c767a5ebe4cd src/eval.c --- 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.