aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorLute Kamstra <[email protected]>2005-02-06 15:59:39 +0000
committerLute Kamstra <[email protected]>2005-02-06 15:59:39 +0000
commit1f9ad95a99be9c985bc78f2ccb56148c2592ccde (patch)
tree1d98aeec2e2bddb5d11b885cac4aaa8051674843 /lispref
parent82d3c425926a4becc942a2435b25492cee3cff27 (diff)
(Example Major Modes): Fix typos.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/ChangeLog4
-rw-r--r--lispref/modes.texi4
2 files changed, 6 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 99d0646d34..aab908b546 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2005-02-06 Lute Kamstra <[email protected]>
+
+ * modes.texi (Example Major Modes): Fix typos.
+
2005-02-06 Richard M. Stallman <[email protected]>
* text.texi (Margins): fill-nobreak-predicate can be one function.
diff --git a/lispref/modes.texi b/lispref/modes.texi
index 699e3ad5d0..ca03249e93 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -379,7 +379,7 @@ inherit all the commands defined in this map.")
In this mode, paragraphs are delimited only by blank or white lines.
You can thus get the full benefit of adaptive filling
(see the variable `adaptive-fill-mode').
-\\{text-mode-map}
+\\@{text-mode-map@}
Turning on Text mode runs the normal hook `text-mode-hook'."
@end group
@group
@@ -481,7 +481,6 @@ correspondingly more complicated. Here are excerpts from
(modify-syntax-entry ?' "' " table)
(modify-syntax-entry ?, "' " table)
@end group
-@end group
@group
;; @r{@dots{}likewise for many other characters@dots{}}
(modify-syntax-entry ?\( "() " table)
@@ -490,6 +489,7 @@ correspondingly more complicated. Here are excerpts from
(modify-syntax-entry ?\] ")[ " table))
table))
@end group
+@group
;; @r{Create an abbrev table for lisp-mode.}
(define-abbrev-table 'lisp-mode-abbrev-table ())
@end group