(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 0f55031..d4133f6 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 185b903..c4816f5 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))))