diff options
| author | Boris Goldowsky | 1995-03-02 15:54:12 +0000 |
|---|---|---|
| committer | Boris Goldowsky | 1995-03-02 15:54:12 +0000 |
| commit | fc4a6dd106f251e19bb8589ef32900b841f98039 (patch) | |
| tree | 8c66eb5e8233d2046653f1d8e76ef06a5ac35547 | |
| parent | 022028393779c8e7908c3c611b47b41b277ccc13 (diff) | |
| download | emacs-fc4a6dd106f251e19bb8589ef32900b841f98039.tar.gz emacs-fc4a6dd106f251e19bb8589ef32900b841f98039.zip | |
(indented-text-mode): Remove ^ from paragraph-start & paragraph-separate.
| -rw-r--r-- | lisp/textmodes/text-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index 6696bec5bc2..aa4e2fc9790 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el | |||
| @@ -106,7 +106,7 @@ Turning on `indented-text-mode' calls the value of the variable | |||
| 106 | (make-local-variable 'indent-line-function) | 106 | (make-local-variable 'indent-line-function) |
| 107 | (setq indent-line-function 'indent-relative-maybe) | 107 | (setq indent-line-function 'indent-relative-maybe) |
| 108 | (make-local-variable 'paragraph-start) | 108 | (make-local-variable 'paragraph-start) |
| 109 | (setq paragraph-start (concat "^$\\|" page-delimiter)) | 109 | (setq paragraph-start (concat "$\\|" page-delimiter)) |
| 110 | (make-local-variable 'paragraph-separate) | 110 | (make-local-variable 'paragraph-separate) |
| 111 | (setq paragraph-separate paragraph-start) | 111 | (setq paragraph-separate paragraph-start) |
| 112 | (use-local-map indented-text-mode-map) | 112 | (use-local-map indented-text-mode-map) |