aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/ooutline.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/ooutline.el b/lisp/textmodes/ooutline.el
index 65f75d655eb..5c6c858757f 100644
--- a/lisp/textmodes/ooutline.el
+++ b/lisp/textmodes/ooutline.el
@@ -198,13 +198,13 @@ Turning on outline mode calls the value of `text-mode-hook' and then of
198 (setq local-abbrev-table text-mode-abbrev-table) 198 (setq local-abbrev-table text-mode-abbrev-table)
199 (set-syntax-table text-mode-syntax-table) 199 (set-syntax-table text-mode-syntax-table)
200 (make-local-variable 'paragraph-start) 200 (make-local-variable 'paragraph-start)
201 (setq paragraph-start (concat paragraph-start "\\|^\\(" 201 (setq paragraph-start (concat paragraph-start "\\|\\("
202 outline-regexp "\\)")) 202 outline-regexp "\\)"))
203 ;; Inhibit auto-filling of header lines. 203 ;; Inhibit auto-filling of header lines.
204 (make-local-variable 'auto-fill-inhibit-regexp) 204 (make-local-variable 'auto-fill-inhibit-regexp)
205 (setq auto-fill-inhibit-regexp outline-regexp) 205 (setq auto-fill-inhibit-regexp outline-regexp)
206 (make-local-variable 'paragraph-separate) 206 (make-local-variable 'paragraph-separate)
207 (setq paragraph-separate (concat paragraph-separate "\\|^\\(" 207 (setq paragraph-separate (concat paragraph-separate "\\|\\("
208 outline-regexp "\\)")) 208 outline-regexp "\\)"))
209 (make-local-variable 'font-lock-defaults) 209 (make-local-variable 'font-lock-defaults)
210 (setq font-lock-defaults '(outline-font-lock-keywords t)) 210 (setq font-lock-defaults '(outline-font-lock-keywords t))