summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2007-07-16 10:16:26 +0000
committerJuanma Barranquero <lekktu@gmail.com>2007-07-16 10:16:26 +0000
commit8ea88172eaf8e9125d5936d81856317b6493219b (patch)
treea71b191e9827f4812acf7534e3e9081e05606b86 /lisp/subr.el
parent0ce4bc9f1fb7833f4e40da33f873f7358f68baa2 (diff)
downloademacs-8ea88172eaf8e9125d5936d81856317b6493219b.tar.gz
(when, unless): Doc fix.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 9ce4758a746..0849403bd51 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -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))))