1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

(indented-text-mode): Remove ^ from paragraph-start & paragraph-separate.

This commit is contained in:
Boris Goldowsky 1995-03-02 15:54:12 +00:00
parent 0220283937
commit fc4a6dd106

View File

@ -106,7 +106,7 @@ Turning on `indented-text-mode' calls the value of the variable
(make-local-variable 'indent-line-function) (make-local-variable 'indent-line-function)
(setq indent-line-function 'indent-relative-maybe) (setq indent-line-function 'indent-relative-maybe)
(make-local-variable 'paragraph-start) (make-local-variable 'paragraph-start)
(setq paragraph-start (concat "^$\\|" page-delimiter)) (setq paragraph-start (concat "$\\|" page-delimiter))
(make-local-variable 'paragraph-separate) (make-local-variable 'paragraph-separate)
(setq paragraph-separate paragraph-start) (setq paragraph-separate paragraph-start)
(use-local-map indented-text-mode-map) (use-local-map indented-text-mode-map)