]> git.eshelyaron.com Git - emacs.git/commitdiff
modes.texi (Example Major Modes): Fix indentation. (Bug#5195)
authorEli Zaretskii <eliz@gnu.org>
Sat, 2 Jan 2010 20:31:41 +0000 (22:31 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 2 Jan 2010 20:31:41 +0000 (22:31 +0200)
doc/lispref/ChangeLog
doc/lispref/modes.texi

index 419e81904edf3e3491640d0b284b58d6adaa7337..e7467c20d2544102b637eb8d47f2de64a7780150 100644 (file)
@@ -1,3 +1,7 @@
+2010-01-02  Eli Zaretskii  <eliz@gnu.org>
+
+       * modes.texi (Example Major Modes): Fix indentation.  (Bug#5195)
+
 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
 
        * nonascii.texi (Text Representations, Character Codes)
index 1e7ef76ed55c97f76d2f34026e84b7a05c10c28a..c78ced0d67b20c14daad98ba17335276b67de7cd 100644 (file)
@@ -1062,8 +1062,8 @@ correspondingly more complicated.  Here are excerpts from
       ;;   @r{part of symbol names but not words.}
       ;;   @r{(The digit @samp{0} is @code{48} in the @acronym{ASCII} character set.)}
       (while (< i ?0)
-       (modify-syntax-entry i "_   " table)
-       (setq i (1+ i)))
+        (modify-syntax-entry i "_   " table)
+        (setq i (1+ i)))
       ;; @r{@dots{} similar code follows for other character ranges.}
 @end group
 @group