1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

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

This commit is contained in:
Boris Goldowsky 1995-03-02 15:48:20 +00:00
parent 886f165697
commit 6e9f6940cc

View File

@ -374,9 +374,9 @@ value of texinfo-mode-hook."
(make-local-variable 'indent-tabs-mode) (make-local-variable 'indent-tabs-mode)
(setq indent-tabs-mode nil) (setq indent-tabs-mode nil)
(make-local-variable 'paragraph-separate) (make-local-variable 'paragraph-separate)
(setq paragraph-separate (concat "^\b\\|^@[a-zA-Z]*[ \n]\\|" paragraph-separate)) (setq paragraph-separate (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-separate))
(make-local-variable 'paragraph-start) (make-local-variable 'paragraph-start)
(setq paragraph-start (concat "^\b\\|^@[a-zA-Z]*[ \n]\\|" paragraph-start)) (setq paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-start))
(make-local-variable 'fill-column) (make-local-variable 'fill-column)
(setq fill-column 72) (setq fill-column 72)
(make-local-variable 'comment-start) (make-local-variable 'comment-start)