Mercurial > emacs
changeset 81863:885122f2f146
(when, unless): Doc fix.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sat, 14 Jul 2007 11:07:24 +0000 |
parents | 4dbb728eaf94 |
children | 2fb3e18fa954 |
files | lisp/subr.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/subr.el Sat Jul 14 11:04:31 2007 +0000 +++ b/lisp/subr.el Sat Jul 14 11:07:24 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))))