1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

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

This commit is contained in:
Boris Goldowsky 1995-03-02 15:37:20 +00:00
parent dad432c6ab
commit edae0c554c

View File

@ -249,7 +249,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'."
(setq local-abbrev-table perl-mode-abbrev-table)
(set-syntax-table perl-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)