aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/modes.texi
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2010-01-02 22:31:41 +0200
committerEli Zaretskii <[email protected]>2010-01-02 22:31:41 +0200
commit2f3725cd1c0936438e2ea6d87232892015adbc0c (patch)
treefa5984061dda10318aff9aa33c8abedc57c0e07c /doc/lispref/modes.texi
parentda76998b6863a34fc3f81765bd706a08256b9af7 (diff)
modes.texi (Example Major Modes): Fix indentation. (Bug#5195)
Diffstat (limited to 'doc/lispref/modes.texi')
-rw-r--r--doc/lispref/modes.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index 1e7ef76ed5..c78ced0d67 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