summaryrefslogtreecommitdiff
path: root/lisp/progmodes/icon.el
diff options
context:
space:
mode:
authorBoris Goldowsky <boris@gnu.org>1995-03-01 16:00:54 +0000
committerBoris Goldowsky <boris@gnu.org>1995-03-01 16:00:54 +0000
commitc2fa61300854fc79ef5e2afcb69fed79f9616e24 (patch)
treea6e5e997bd0ca36a635885479840e1bb9f96afb5 /lisp/progmodes/icon.el
parent4ffa8e93aa6b12f80334268ebb220d332ba223f2 (diff)
downloademacs-c2fa61300854fc79ef5e2afcb69fed79f9616e24.tar.gz
(icon-mode): Remove ^ from paragraph-start & paragraph-separate.
Diffstat (limited to 'lisp/progmodes/icon.el')
-rw-r--r--lisp/progmodes/icon.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/icon.el b/lisp/progmodes/icon.el
index c65151c3a20..10882dabbe1 100644
--- a/lisp/progmodes/icon.el
+++ b/lisp/progmodes/icon.el
@@ -129,7 +129,7 @@ with no args, if that value is non-nil."
(setq local-abbrev-table icon-mode-abbrev-table)
(set-syntax-table icon-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 'indent-line-function)