1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 18:40:39 -08:00

(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.
This commit is contained in:
Robert J. Chassell 2007-01-30 12:57:11 +00:00
parent 4799aa91aa
commit 482d6bf5d0
2 changed files with 10 additions and 3 deletions

View file

@ -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> 2006-11-27 Andreas Schwab <schwab@suse.de>
* Makefile.in (usermanualdir): Define. * Makefile.in (usermanualdir): Define.

View file

@ -4112,9 +4112,9 @@ is not greater than 5!} when you evaluate it in the usual way:
@smallexample @smallexample
@group @group
(if (> 4 5) ; @r{if-part} (if (> 4 5) ; @r{if-part}
(message "5 is greater than 4!") ; @r{then-part} (message "4 falsely greater than 5!") ; @r{then-part}
(message "4 is not greater than 5!")) ; @r{else-part} (message "4 is not greater than 5!")) ; @r{else-part}
@end group @end group
@end smallexample @end smallexample