# HG changeset patch # User Juanma Barranquero # Date 1184580986 0 # Node ID 677d96c34c879535851d854b91ef01d9ca88726e # Parent 9cbb2ce8ec8cff220fd6e781225917d5163dc818 (when, unless): Doc fix. diff -r 9cbb2ce8ec8c -r 677d96c34c87 lisp/subr.el --- a/lisp/subr.el Mon Jul 16 03:58:54 2007 +0000 +++ b/lisp/subr.el Mon Jul 16 10:16:26 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))))