]> git.eshelyaron.com Git - emacs.git/commitdiff
(when, unless): Doc fix.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 16 Jul 2007 10:16:26 +0000 (10:16 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 16 Jul 2007 10:16:26 +0000 (10:16 +0000)
lisp/subr.el

index 9ce4758a7468bf705f8c90bcb1b0772d3772c430..0849403bd51f9a3fd58b198eadc63fd2967235a3 100644 (file)
@@ -103,7 +103,7 @@ change the list."
 When COND yields non-nil, eval BODY forms sequentially and return
 value of last one, or nil if there are none.
 
-\(fn COND BODY ...)"
+\(fn COND BODY...)"
   (declare (indent 1) (debug t))
   (list 'if cond (cons 'progn body)))
 
@@ -112,7 +112,7 @@ value of last one, or nil if there are none.
 When COND yields nil, eval BODY forms sequentially and return
 value of last one, or nil if there are none.
 
-\(fn COND BODY ...)"
+\(fn COND BODY...)"
   (declare (indent 1) (debug t))
   (cons 'if (cons cond (cons nil body))))