* texinfo.el (texinfo-mode): Make page-delimiter buffer-local, and

set it according to texinfo-chapter-level-regexp.
This commit is contained in:
Jim Blandy 1993-02-01 22:19:52 +00:00
parent 7b1437089b
commit cbbc8d275a

View file

@ -224,6 +224,8 @@ value of texinfo-mode-hook."
(set-syntax-table texinfo-mode-syntax-table)
(make-local-variable 'require-final-newline)
(setq require-final-newline t)
(make-local-variable 'page-delimiter)
(setq page-delimiter texinfo-chapter-level-regexp)
(make-local-variable 'paragraph-separate)
(setq paragraph-separate (concat "^\b\\|^@[a-zA-Z]*[ \n]\\|" paragraph-separate))
(make-local-variable 'paragraph-start)