diff lispref/modes.texi @ 71638:3184a667d8db

fix overfull/underfull boxes
author Karl Berry <karl@gnu.org>
date Wed, 05 Jul 2006 14:13:24 +0000
parents 76fee807f4c0
children ce0ef9a0bb1f 138ce2701550
line wrap: on
line diff
--- a/lispref/modes.texi	Wed Jul 05 14:11:15 2006 +0000
+++ b/lispref/modes.texi	Wed Jul 05 14:13:24 2006 +0000
@@ -502,7 +502,7 @@
   (let ((st (make-syntax-table)))
     (modify-syntax-entry ?\" ".   " st)
     (modify-syntax-entry ?\\ ".   " st)
-    ;; We add `p' so that M-c on 'hello' leads to 'Hello' rather than 'hello'.
+    ;; Add `p' so M-c on `hello' leads to `Hello', not `hello'.
     (modify-syntax-entry ?' "w p" st)
     st)
   "Syntax table used while in `text-mode'.")
@@ -517,8 +517,9 @@
     (define-key map "\eS" 'center-paragraph)
     map)
   "Keymap for `text-mode'.
-Many other modes, such as `mail-mode', `outline-mode' and `indented-text-mode',
-inherit all the commands defined in this map.")
+Many other modes, such as Mail mode, Outline mode
+and Indented Text mode, inherit all the commands
+defined in this map.")
 @end group
 @end smallexample