]> git.eshelyaron.com Git - emacs.git/commitdiff
(else): Rephrase message of first if-then-else example so it is right
authorRobert J. Chassell <bob@rattlesnake.com>
Tue, 30 Jan 2007 12:57:11 +0000 (12:57 +0000)
committerRobert J. Chassell <bob@rattlesnake.com>
Tue, 30 Jan 2007 12:57:11 +0000 (12:57 +0000)
both in itself and in the "true" case of the expression, which asks
whether 4 is greater than 5.

lispintro/ChangeLog
lispintro/emacs-lisp-intro.texi

index 96491b93c0855245c94a488b7021c06dec03a4c6..7d4fae9eba82d4825b30850c7c5a204571336c1c 100644 (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>
 
        * Makefile.in (usermanualdir): Define.
index 6e1259894461dde27c74ae463e42929129dc815c..0318ac5d3619e4c5c4bb682122769bb393b7e894 100644 (file)
@@ -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