]> git.eshelyaron.com Git - emacs.git/commitdiff
(For, Fand, Fprogn): Doc fixes.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 16 Jul 2007 10:33:02 +0000 (10:33 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 16 Jul 2007 10:33:02 +0000 (10:33 +0000)
src/eval.c

index 4ce5c6d05a9f5c4f8083066e68139ba24f39a903..1ea662f8843baf482c09084a629cd12d13ecd964 100644 (file)
@@ -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;
 {