1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

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

This commit is contained in:
Boris Goldowsky 1995-03-02 15:28:45 +00:00
parent 33308f7b9d
commit 6217bd13c9

View File

@ -211,7 +211,7 @@ Entry to this mode calls the value of mim-mode-hook if non-nil."
(use-local-map mim-mode-map)
(set-syntax-table mim-mode-syntax-table)
(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)
(make-local-variable 'paragraph-ignore-fill-prefix)