From: Juanma Barranquero Date: Mon, 16 Jul 2007 10:33:02 +0000 (+0000) Subject: (For, Fand, Fprogn): Doc fixes. X-Git-Tag: emacs-pretest-22.1.90~1250 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=755ab04c0337d1a92db61ca04646230272b17460;p=emacs.git (For, Fand, Fprogn): Doc fixes. --- diff --git a/src/eval.c b/src/eval.c index 4ce5c6d05a9..1ea662f8843 100644 --- a/src/eval.c +++ b/src/eval.c @@ -330,7 +330,7 @@ DEFUN ("or", For, Sor, 0, UNEVALLED, 0, doc: /* Eval args until one of them yields non-nil, then return that value. The remaining args are not evalled at all. If all args return nil, return nil. -usage: (or CONDITIONS ...) */) +usage: (or CONDITIONS...) */) (args) Lisp_Object args; { @@ -355,7 +355,7 @@ DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0, 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 ...) */) +usage: (and CONDITIONS...) */) (args) Lisp_Object args; { @@ -434,7 +434,7 @@ usage: (cond CLAUSES...) */) DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0, doc: /* Eval BODY forms sequentially and return value of last one. -usage: (progn BODY ...) */) +usage: (progn BODY...) */) (args) Lisp_Object args; {