summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lispintro/ChangeLog7
-rw-r--r--lispintro/emacs-lisp-intro.texi6
2 files changed, 10 insertions, 3 deletions
diff --git a/lispintro/ChangeLog b/lispintro/ChangeLog
index 96491b93c08..7d4fae9eba8 100644
--- a/lispintro/ChangeLog
+++ b/lispintro/ChangeLog
@@ -1,3 +1,10 @@
+2007-01-30 Robert J. Chassell <bob@rattlesnake.com>
+
+ * emacs-lisp-intro.texi (else): Rephrase message of first
+ if-then-else example so it is right both in itself and in the
+ "true" case of the expression, which asks whether 4 is greater
+ than 5.
+
2006-11-27 Andreas Schwab <schwab@suse.de>
* Makefile.in (usermanualdir): Define.
diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi
index 6e125989446..0318ac5d361 100644
--- a/lispintro/emacs-lisp-intro.texi
+++ b/lispintro/emacs-lisp-intro.texi
@@ -4112,9 +4112,9 @@ is not greater than 5!} when you evaluate it in the usual way:
@smallexample
@group
-(if (> 4 5) ; @r{if-part}
- (message "5 is greater than 4!") ; @r{then-part}
- (message "4 is not greater than 5!")) ; @r{else-part}
+(if (> 4 5) ; @r{if-part}
+ (message "4 falsely greater than 5!") ; @r{then-part}
+ (message "4 is not greater than 5!")) ; @r{else-part}
@end group
@end smallexample