]> git.eshelyaron.com Git - emacs.git/commitdiff
(For, Fand): Doc fixes.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 18 Jul 2007 11:48:47 +0000 (11:48 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 18 Jul 2007 11:48:47 +0000 (11:48 +0000)
Reported by Johan Bockgård.

src/eval.c

index cd0d0fc1c5c0bbd4c76e20c8b1e6b23f241788da..b96c35a41b13ddf1868f52026a41c3f086b3a8d6 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;
 {