# HG changeset patch # User Juanma Barranquero # Date 1184581982 0 # Node ID fb666c8f678a6908c8e04cadaf37f0c3ecbb5d54 # Parent 5e5f359984e53267ea0f07fe88cbab70ff19f035 (For, Fand, Fprogn): Doc fixes. diff -r 5e5f359984e5 -r fb666c8f678a src/eval.c --- a/src/eval.c Mon Jul 16 10:31:56 2007 +0000 +++ b/src/eval.c Mon Jul 16 10:33:02 2007 +0000 @@ -330,7 +330,7 @@ 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 @@ 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 @@ 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; {