1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(awk-mode): Remove ^ from paragraph-start & paragraph-separate.

This commit is contained in:
Boris Goldowsky 1995-03-01 15:41:51 +00:00
parent 35ad468319
commit 8e32e928fe

View File

@ -71,7 +71,7 @@ with no args, if that value is non-nil."
(setq local-abbrev-table awk-mode-abbrev-table)
(set-syntax-table awk-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)