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
commitbac3c7494a51c0c9f8fb59c5e4bd866c5f21ae56 (patch)
treea8bc544c8c7b55ce86bfc4afccd80d991b8c6de6 /lisp/subr.el
parent908265fc31cd7ed89c0170ed7b427e549847ce75 (diff)
downloademacs-bac3c7494a51c0c9f8fb59c5e4bd866c5f21ae56.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))))