# HG changeset patch # User Juanma Barranquero # Date 1184411244 0 # Node ID 885122f2f146100490d124e84f0c294f79815866 # Parent 4dbb728eaf947dd5361d6c3d3006bf5a938fae2a (when, unless): Doc fix. diff -r 4dbb728eaf94 -r 885122f2f146 lisp/subr.el --- 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))))