summaryrefslogtreecommitdiff
path: root/lispintro/emacs-lisp-intro.texi
diff options
context:
space:
mode:
authorRobert J. Chassell <bob@rattlesnake.com>2007-01-30 12:57:11 +0000
committerRobert J. Chassell <bob@rattlesnake.com>2007-01-30 12:57:11 +0000
commit482d6bf5d01867ee7f06295b585bff19828896b0 (patch)
treea0def5c98d3ab902a94aa310623be2113edc58fd /lispintro/emacs-lisp-intro.texi
parent4799aa91aac90c2e61ef141df9243c2f8deb79d3 (diff)
downloademacs-482d6bf5d01867ee7f06295b585bff19828896b0.tar.gz
emacs-482d6bf5d01867ee7f06295b585bff19828896b0.tar.bz2
emacs-482d6bf5d01867ee7f06295b585bff19828896b0.zip
(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.
Diffstat (limited to 'lispintro/emacs-lisp-intro.texi')
-rw-r--r--lispintro/emacs-lisp-intro.texi6
1 files changed, 3 insertions, 3 deletions
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