aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2010-01-02 22:31:41 +0200
committerEli Zaretskii2010-01-02 22:31:41 +0200
commit2f3725cd1c0936438e2ea6d87232892015adbc0c (patch)
treefa5984061dda10318aff9aa33c8abedc57c0e07c
parentda76998b6863a34fc3f81765bd706a08256b9af7 (diff)
downloademacs-2f3725cd1c0936438e2ea6d87232892015adbc0c.tar.gz
emacs-2f3725cd1c0936438e2ea6d87232892015adbc0c.zip
modes.texi (Example Major Modes): Fix indentation. (Bug#5195)
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/modes.texi4
2 files changed, 6 insertions, 2 deletions
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 @@
12010-01-02 Eli Zaretskii <eliz@gnu.org>
2
3 * modes.texi (Example Major Modes): Fix indentation. (Bug#5195)
4
12010-01-02 Chong Yidong <cyd@stupidchicken.com> 52010-01-02 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * nonascii.texi (Text Representations, Character Codes) 7 * 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
1062 ;; @r{part of symbol names but not words.} 1062 ;; @r{part of symbol names but not words.}
1063 ;; @r{(The digit @samp{0} is @code{48} in the @acronym{ASCII} character set.)} 1063 ;; @r{(The digit @samp{0} is @code{48} in the @acronym{ASCII} character set.)}
1064 (while (< i ?0) 1064 (while (< i ?0)
1065 (modify-syntax-entry i "_ " table) 1065 (modify-syntax-entry i "_ " table)
1066 (setq i (1+ i))) 1066 (setq i (1+ i)))
1067 ;; @r{@dots{} similar code follows for other character ranges.} 1067 ;; @r{@dots{} similar code follows for other character ranges.}
1068@end group 1068@end group
1069@group 1069@group