diff options
| author | Boris Goldowsky | 1995-03-02 15:36:11 +0000 |
|---|---|---|
| committer | Boris Goldowsky | 1995-03-02 15:36:11 +0000 |
| commit | dad432c6ab7b3a69839ec1dfdccbd7c3f0dc5c22 (patch) | |
| tree | 43968d4dfbc31f7db34b9fd9ec9682390ff84939 | |
| parent | 3d6663bb11f1eee42f2fb71b7524c01ccb5e6c14 (diff) | |
| download | emacs-dad432c6ab7b3a69839ec1dfdccbd7c3f0dc5c22.tar.gz emacs-dad432c6ab7b3a69839ec1dfdccbd7c3f0dc5c22.zip | |
(outline-mode): Remove ^ from paragraph-start & paragraph-separate.
| -rw-r--r-- | lisp/textmodes/ooutline.el | 4 |
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)) |