From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:54:12 +0000 (+0000) Subject: (indented-text-mode): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4959 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fc4a6dd106f251e19bb8589ef32900b841f98039;p=emacs.git (indented-text-mode): Remove ^ from paragraph-start & paragraph-separate. --- diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index 6696bec5bc2..aa4e2fc9790 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el @@ -106,7 +106,7 @@ Turning on `indented-text-mode' calls the value of the variable (make-local-variable 'indent-line-function) (setq indent-line-function 'indent-relative-maybe) (make-local-variable 'paragraph-start) - (setq paragraph-start (concat "^$\\|" page-delimiter)) + (setq paragraph-start (concat "$\\|" page-delimiter)) (make-local-variable 'paragraph-separate) (setq paragraph-separate paragraph-start) (use-local-map indented-text-mode-map)