From: Juanma Barranquero Date: Mon, 16 Jul 2007 10:16:26 +0000 (+0000) Subject: (when, unless): Doc fix. X-Git-Tag: emacs-pretest-22.1.90~1254 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bac3c7494a51c0c9f8fb59c5e4bd866c5f21ae56;p=emacs.git (when, unless): Doc fix. --- 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))))