mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(outline-mode): Remove ^ from paragraph-start & paragraph-separate.
This commit is contained in:
parent
3d6663bb11
commit
dad432c6ab
1 changed files with 2 additions and 2 deletions
|
|
@ -198,13 +198,13 @@ Turning on outline mode calls the value of `text-mode-hook' and then of
|
|||
(setq local-abbrev-table text-mode-abbrev-table)
|
||||
(set-syntax-table text-mode-syntax-table)
|
||||
(make-local-variable 'paragraph-start)
|
||||
(setq paragraph-start (concat paragraph-start "\\|^\\("
|
||||
(setq paragraph-start (concat paragraph-start "\\|\\("
|
||||
outline-regexp "\\)"))
|
||||
;; Inhibit auto-filling of header lines.
|
||||
(make-local-variable 'auto-fill-inhibit-regexp)
|
||||
(setq auto-fill-inhibit-regexp outline-regexp)
|
||||
(make-local-variable 'paragraph-separate)
|
||||
(setq paragraph-separate (concat paragraph-separate "\\|^\\("
|
||||
(setq paragraph-separate (concat paragraph-separate "\\|\\("
|
||||
outline-regexp "\\)"))
|
||||
(make-local-variable 'font-lock-defaults)
|
||||
(setq font-lock-defaults '(outline-font-lock-keywords t))
|
||||
|
|
|
|||
Loading…
Reference in a new issue