From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:37:20 +0000 (+0000) Subject: (perl-mode): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4969 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=edae0c554c038ae9a15f50e1b3ae83423c497e7f;p=emacs.git (perl-mode): Remove ^ from paragraph-start & paragraph-separate. --- diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el index d8ee5feeb7d..c0e0cbba09b 100644 --- a/lisp/progmodes/perl-mode.el +++ b/lisp/progmodes/perl-mode.el @@ -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)