From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:31:55 +0000 (+0000) Subject: (modula-2-mode): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4973 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6f2096a7d4cc61f903c0cbf1e066703bbfe49eca;p=emacs.git (modula-2-mode): Remove ^ from paragraph-start & paragraph-separate. --- diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el index 21b7d475b30..ada150732c3 100644 --- a/lisp/progmodes/modula2.el +++ b/lisp/progmodes/modula2.el @@ -123,7 +123,7 @@ followed by the first character of the construct. (setq end-comment-column 75) (set-syntax-table m2-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)