]> git.eshelyaron.com Git - emacs.git/commitdiff
(text-mode): Let all-white lines separate paragraphs.
authorRichard M. Stallman <rms@gnu.org>
Sun, 15 Jun 1997 07:36:42 +0000 (07:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 15 Jun 1997 07:36:42 +0000 (07:36 +0000)
lisp/textmodes/text-mode.el

index b555d61a8102a7b61a83f1c9c3a1bf211898f0de..7e175fe941276bd9ae1fc35cbb22dfc73adcd5f4 100644 (file)
@@ -58,7 +58,7 @@ inherit all the commands defined in this map.")
 \f
 (defun text-mode ()
   "Major mode for editing text written for humans to read.
-In this mode, paragraphs are delimited only by blank lines.
+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}
@@ -69,7 +69,7 @@ Turning on Text mode runs the normal hook `text-mode-hook'."
   (setq local-abbrev-table text-mode-abbrev-table)
   (set-syntax-table text-mode-syntax-table)
   (make-local-variable 'paragraph-start)
-  (setq paragraph-start (concat "$\\|" page-delimiter))
+  (setq paragraph-start (concat "[ \t]*$\\|" page-delimiter))
   (make-local-variable 'paragraph-separate)
   (setq paragraph-separate paragraph-start)
   (setq mode-name "Text")