# HG changeset patch # User Robert J. Chassell # Date 1170161787 0 # Node ID 5325e1fc379dc484916fad40b7afa722620f2242 # Parent 98a32ea6898a37a6d08b3daeecc617030f523432 (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. diff -r 98a32ea6898a -r 5325e1fc379d lispintro/emacs-lisp-intro.texi --- a/lispintro/emacs-lisp-intro.texi Tue Jan 30 10:09:53 2007 +0000 +++ b/lispintro/emacs-lisp-intro.texi Tue Jan 30 12:56:27 2007 +0000 @@ -4112,9 +4112,9 @@ @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