diff lisp/subr.el @ 78149:677d96c34c87

(when, unless): Doc fix.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 16 Jul 2007 10:16:26 +0000
parents d53cb34bfd32
children 9355f9b7bbff
line wrap: on
line diff
--- a/lisp/subr.el	Mon Jul 16 03:58:54 2007 +0000
+++ b/lisp/subr.el	Mon Jul 16 10:16:26 2007 +0000
@@ -103,7 +103,7 @@
 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 @@
 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))))