diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-07-16 10:16:26 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-07-16 10:16:26 +0000 |
commit | bac3c7494a51c0c9f8fb59c5e4bd866c5f21ae56 (patch) | |
tree | a8bc544c8c7b55ce86bfc4afccd80d991b8c6de6 /lisp/subr.el | |
parent | 908265fc31cd7ed89c0170ed7b427e549847ce75 (diff) | |
download | emacs-bac3c7494a51c0c9f8fb59c5e4bd866c5f21ae56.tar.gz |
(when, unless): Doc fix.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 4 |
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)))) |