aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2007-07-14 11:11:43 +0000
committerJuanma Barranquero <[email protected]>2007-07-14 11:11:43 +0000
commitebc3ae141e844a7fe108b4e7d019a45c0f581429 (patch)
treecc766089d4a9cf337a7a442fafaa845429c50b7d
parent1bab435a3e51e7a8442847679cb9daf68bf4f264 (diff)
(when, unless): Doc fix.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/subr.el4
2 files changed, 8 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0f55031291..d4133f6fae 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2007-07-14 Juanma Barranquero <[email protected]>
+
+ * subr.el (when, unless): Doc fix.
+
2007-07-13 Eli Zaretskii <[email protected]>
* makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
@@ -25,8 +29,7 @@
2007-07-13 Carsten Dominik <[email protected]>
* 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 <[email protected]>
@@ -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 185b9031d2..c4816f5d13 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))))