diff options
| author | Lute Kamstra | 2005-02-06 15:59:39 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-02-06 15:59:39 +0000 |
| commit | 1f9ad95a99be9c985bc78f2ccb56148c2592ccde (patch) | |
| tree | 1d98aeec2e2bddb5d11b885cac4aaa8051674843 | |
| parent | 82d3c425926a4becc942a2435b25492cee3cff27 (diff) | |
| download | emacs-1f9ad95a99be9c985bc78f2ccb56148c2592ccde.tar.gz emacs-1f9ad95a99be9c985bc78f2ccb56148c2592ccde.zip | |
(Example Major Modes): Fix typos.
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/modes.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 99d0646d347..aab908b5461 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-02-06 Lute Kamstra <lute@gnu.org> | ||
| 2 | |||
| 3 | * modes.texi (Example Major Modes): Fix typos. | ||
| 4 | |||
| 1 | 2005-02-06 Richard M. Stallman <rms@gnu.org> | 5 | 2005-02-06 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * text.texi (Margins): fill-nobreak-predicate can be one function. | 7 | * text.texi (Margins): fill-nobreak-predicate can be one function. |
diff --git a/lispref/modes.texi b/lispref/modes.texi index 699e3ad5d06..ca03249e93d 100644 --- a/lispref/modes.texi +++ b/lispref/modes.texi | |||
| @@ -379,7 +379,7 @@ inherit all the commands defined in this map.") | |||
| 379 | In this mode, paragraphs are delimited only by blank or white lines. | 379 | In this mode, paragraphs are delimited only by blank or white lines. |
| 380 | You can thus get the full benefit of adaptive filling | 380 | You can thus get the full benefit of adaptive filling |
| 381 | (see the variable `adaptive-fill-mode'). | 381 | (see the variable `adaptive-fill-mode'). |
| 382 | \\{text-mode-map} | 382 | \\@{text-mode-map@} |
| 383 | Turning on Text mode runs the normal hook `text-mode-hook'." | 383 | Turning on Text mode runs the normal hook `text-mode-hook'." |
| 384 | @end group | 384 | @end group |
| 385 | @group | 385 | @group |
| @@ -481,7 +481,6 @@ correspondingly more complicated. Here are excerpts from | |||
| 481 | (modify-syntax-entry ?' "' " table) | 481 | (modify-syntax-entry ?' "' " table) |
| 482 | (modify-syntax-entry ?, "' " table) | 482 | (modify-syntax-entry ?, "' " table) |
| 483 | @end group | 483 | @end group |
| 484 | @end group | ||
| 485 | @group | 484 | @group |
| 486 | ;; @r{@dots{}likewise for many other characters@dots{}} | 485 | ;; @r{@dots{}likewise for many other characters@dots{}} |
| 487 | (modify-syntax-entry ?\( "() " table) | 486 | (modify-syntax-entry ?\( "() " table) |
| @@ -490,6 +489,7 @@ correspondingly more complicated. Here are excerpts from | |||
| 490 | (modify-syntax-entry ?\] ")[ " table)) | 489 | (modify-syntax-entry ?\] ")[ " table)) |
| 491 | table)) | 490 | table)) |
| 492 | @end group | 491 | @end group |
| 492 | @group | ||
| 493 | ;; @r{Create an abbrev table for lisp-mode.} | 493 | ;; @r{Create an abbrev table for lisp-mode.} |
| 494 | (define-abbrev-table 'lisp-mode-abbrev-table ()) | 494 | (define-abbrev-table 'lisp-mode-abbrev-table ()) |
| 495 | @end group | 495 | @end group |