From: Eli Zaretskii Date: Sat, 2 Jan 2010 20:31:41 +0000 (+0200) Subject: modes.texi (Example Major Modes): Fix indentation. (Bug#5195) X-Git-Tag: emacs-pretest-23.1.92~91 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2f3725cd1c0936438e2ea6d87232892015adbc0c;p=emacs.git modes.texi (Example Major Modes): Fix indentation. (Bug#5195) --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 419e81904ed..e7467c20d25 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2010-01-02 Eli Zaretskii + + * modes.texi (Example Major Modes): Fix indentation. (Bug#5195) + 2010-01-02 Chong Yidong * nonascii.texi (Text Representations, Character Codes) diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index 1e7ef76ed55..c78ced0d67b 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi @@ -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