diff options
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 4 |
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 @@ | |||
| 1 | 2010-01-02 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * modes.texi (Example Major Modes): Fix indentation. (Bug#5195) | ||
| 4 | |||
| 1 | 2010-01-02 Chong Yidong <cyd@stupidchicken.com> | 5 | 2010-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 |