]> git.eshelyaron.com Git - emacs.git/commitdiff
(when, unless): Doc fix.
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 14 Jul 2007 11:11:43 +0000 (11:11 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 14 Jul 2007 11:11:43 +0000 (11:11 +0000)
lisp/ChangeLog
lisp/subr.el

index 0f5503129122abc2cf0ad2ecde5c7dda3f2ef839..d4133f6fae251e6d5c6117a00c3cfb2528decd31 100644 (file)
@@ -1,3 +1,7 @@
+2007-07-14  Juanma Barranquero  <lekktu@gmail.com>
+
+       * subr.el (when, unless): Doc fix.
+
 2007-07-13  Eli Zaretskii  <eliz@gnu.org>
 
        * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
@@ -25,8 +29,7 @@
 2007-07-13  Carsten Dominik  <dominik@science.uva.nl>
 
        * 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  <monnier@iro.umontreal.ca>
 
        (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.
 
index 185b9031d277956b80700d3c8df51d730b1fde3c..c4816f5d13412c5b9d6b961f942e9a57fdfbfb6c 100644 (file)
@@ -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))))