From: Juanma Barranquero Date: Sat, 14 Jul 2007 11:11:43 +0000 (+0000) Subject: (when, unless): Doc fix. X-Git-Tag: emacs-pretest-23.0.90~11917 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ebc3ae141e844a7fe108b4e7d019a45c0f581429;p=emacs.git (when, unless): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0f550312912..d4133f6fae2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-07-14 Juanma Barranquero + + * subr.el (when, unless): Doc fix. + 2007-07-13 Eli Zaretskii * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets. @@ -25,8 +29,7 @@ 2007-07-13 Carsten Dominik * textmodes/org.el: Bug fixes. - (org-end-of-line): Move to end of line if in headline without - tags. + (org-end-of-line): Move to end of line if in headline without tags. 2007-07-13 Stefan Monnier @@ -297,7 +300,7 @@ (math-approx-gamma-const): Add docstrings. * calc/calc-forms.el (math-julian-date-beginning) - (math-julian-date-beginning-int) New constants. + (math-julian-date-beginning-int): New constants. (math-format-date-part, math-parse-standard-date, calcFunc-julian): Use the new constants. diff --git a/lisp/subr.el b/lisp/subr.el index 185b9031d27..c4816f5d134 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))))