diff options
author | Boris Goldowsky <boris@gnu.org> | 1995-03-02 15:43:35 +0000 |
---|---|---|
committer | Boris Goldowsky <boris@gnu.org> | 1995-03-02 15:43:35 +0000 |
commit | c53857e9b2b6d9054183669945140bb88cf892b2 (patch) | |
tree | 5ac0f99fe44fe8f0a11c78d2a433b48296e57b00 /lisp/progmodes/simula.el | |
parent | eb35ee41debcc2a6c7a3befdb70b8a9a7c74fc63 (diff) | |
download | emacs-c53857e9b2b6d9054183669945140bb88cf892b2.tar.gz |
(simula-mode): Remove ^ from paragraph-start & paragraph-separate.
Diffstat (limited to 'lisp/progmodes/simula.el')
-rw-r--r-- | lisp/progmodes/simula.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/simula.el b/lisp/progmodes/simula.el index 52357f7aaf1..0f8f5a0ec8e 100644 --- a/lisp/progmodes/simula.el +++ b/lisp/progmodes/simula.el @@ -183,7 +183,7 @@ at all." (setq end-comment-column 75) (set-syntax-table simula-mode-syntax-table) (make-local-variable 'paragraph-start) - (setq paragraph-start "^[ \t]*$\\|\\f") + (setq paragraph-start "[ \t]*$\\|\\f") (make-local-variable 'paragraph-separate) (setq paragraph-separate paragraph-start) (make-local-variable 'indent-line-function) |