From: Pavel Janík Date: Tue, 13 Nov 2001 07:00:46 +0000 (+0000) Subject: (Fif): Reindent. X-Git-Tag: ttn-vms-21-2-B4~18617 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b8de5714c49bc75f0117f04e20290bea47c50b5f;p=emacs.git (Fif): Reindent. (Fand): Likewise. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8d34096f1bc..0bb8d9feac1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2001-11-13 Pavel Jan,Bm(Bk + * eval.c (Fif): Reindent. + (Fand): Likewise. + * editfns.c (Fuser_real_login_name): Reindent. (Finsert_buffer_substring): Likewise. (Fcompare_buffer_substrings): Likewise. diff --git a/src/eval.c b/src/eval.c index 8a3ee8cb761..2d15fa87431 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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.