diff options
author | Boris Goldowsky <boris@gnu.org> | 1995-03-02 15:31:55 +0000 |
---|---|---|
committer | Boris Goldowsky <boris@gnu.org> | 1995-03-02 15:31:55 +0000 |
commit | 6f2096a7d4cc61f903c0cbf1e066703bbfe49eca (patch) | |
tree | 7f2bf1e5e924cf608c4ca1dbd3aa7244cccbbc29 /lisp/progmodes/modula2.el | |
parent | 6217bd13c9f7bfc8cd79339f18641089fc856123 (diff) | |
download | emacs-6f2096a7d4cc61f903c0cbf1e066703bbfe49eca.tar.gz |
(modula-2-mode): Remove ^ from paragraph-start & paragraph-separate.
Diffstat (limited to 'lisp/progmodes/modula2.el')
-rw-r--r-- | lisp/progmodes/modula2.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |