aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Goldowsky1995-03-01 16:00:54 +0000
committerBoris Goldowsky1995-03-01 16:00:54 +0000
commit67468628707fcdd5b89d678532bb7f3b02c9f024 (patch)
tree66056e7caeb123b70dd40cb540b269e641f70318
parentb2ca492b319d64da68dfd25d9697c4dd78f0e247 (diff)
downloademacs-67468628707fcdd5b89d678532bb7f3b02c9f024.tar.gz
emacs-67468628707fcdd5b89d678532bb7f3b02c9f024.zip
(icon-mode): Remove ^ from paragraph-start & paragraph-separate.
-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."
129 (setq local-abbrev-table icon-mode-abbrev-table) 129 (setq local-abbrev-table icon-mode-abbrev-table)
130 (set-syntax-table icon-mode-syntax-table) 130 (set-syntax-table icon-mode-syntax-table)
131 (make-local-variable 'paragraph-start) 131 (make-local-variable 'paragraph-start)
132 (setq paragraph-start (concat "^$\\|" page-delimiter)) 132 (setq paragraph-start (concat "$\\|" page-delimiter))
133 (make-local-variable 'paragraph-separate) 133 (make-local-variable 'paragraph-separate)
134 (setq paragraph-separate paragraph-start) 134 (setq paragraph-separate paragraph-start)
135 (make-local-variable 'indent-line-function) 135 (make-local-variable 'indent-line-function)