aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/modula2.el
diff options
context:
space:
mode:
authorBoris Goldowsky <[email protected]>1995-03-02 15:31:55 +0000
committerBoris Goldowsky <[email protected]>1995-03-02 15:31:55 +0000
commit6f2096a7d4cc61f903c0cbf1e066703bbfe49eca (patch)
tree7f2bf1e5e924cf608c4ca1dbd3aa7244cccbbc29 /lisp/progmodes/modula2.el
parent6217bd13c9f7bfc8cd79339f18641089fc856123 (diff)
(modula-2-mode): Remove ^ from paragraph-start & paragraph-separate.
Diffstat (limited to 'lisp/progmodes/modula2.el')
-rw-r--r--lisp/progmodes/modula2.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el
index 21b7d475b3..ada150732c 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)