diff options
author | Boris Goldowsky <boris@gnu.org> | 1995-03-01 15:35:47 +0000 |
---|---|---|
committer | Boris Goldowsky <boris@gnu.org> | 1995-03-01 15:35:47 +0000 |
commit | e2e71c325185d84cfd6e67ea6946fb075b25bdbc (patch) | |
tree | 5e3f434f2f1521f7eb152eab1a8f888abafc3e94 | |
parent | 2e16553ccc8c37df91211c6f63fafd66d69b7105 (diff) | |
download | emacs-e2e71c325185d84cfd6e67ea6946fb075b25bdbc.tar.gz |
(ada-mode): Remove ^ from paragraph-start & -separate.
-rw-r--r-- | lisp/ada.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ada.el b/lisp/ada.el index 9eafaccd619..bae849bbbd1 100644 --- a/lisp/ada.el +++ b/lisp/ada.el @@ -233,7 +233,7 @@ Variable `ada-indent' controls the number of spaces for indent/undent." (setq ada-comment-end-column 72) (set-syntax-table ada-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) |