diff options
| author | Dave Love | 1998-04-23 17:37:12 +0000 |
|---|---|---|
| committer | Dave Love | 1998-04-23 17:37:12 +0000 |
| commit | 4b7d4d0d0b56ff29e830089eec87b3a91ac78ffb (patch) | |
| tree | 1379387cc2d68d5f2a7d0f83bf3110e104e0eb70 | |
| parent | 3e8ceaacd123dac9acb113fb39093fb1070296ef (diff) | |
| download | emacs-4b7d4d0d0b56ff29e830089eec87b3a91ac78ffb.tar.gz emacs-4b7d4d0d0b56ff29e830089eec87b3a91ac78ffb.zip | |
(change-log-mode): Add `* ' to paragraph-start.
| -rw-r--r-- | lisp/add-log.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index cb3873750c0..1361b6832e9 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el | |||
| @@ -414,12 +414,12 @@ Runs `change-log-mode-hook'." | |||
| 414 | (use-local-map change-log-mode-map) | 414 | (use-local-map change-log-mode-map) |
| 415 | (set (make-local-variable 'fill-paragraph-function) | 415 | (set (make-local-variable 'fill-paragraph-function) |
| 416 | 'change-log-fill-paragraph) | 416 | 'change-log-fill-paragraph) |
| 417 | ;; Let each entry behave as one paragraph: | 417 | ;; We really do want "^" in paragraph-start below: it is only the |
| 418 | ;; We really do want "^" in paragraph-start below: it is only the lines that | 418 | ;; lines that begin at column 0 (despite the left-margin of 8) that |
| 419 | ;; begin at column 0 (despite the left-margin of 8) that we are looking for. | 419 | ;; we are looking for. Adding `* ' allows eliding the blank line |
| 420 | (set (make-local-variable 'paragraph-start) "\\s *$\\|\f\\|^\\<") | 420 | ;; between entries for different files. |
| 421 | (set (make-local-variable 'paragraph-separate) "\\s *$\\|\f\\|^\\<") | 421 | (set (make-local-variable 'paragraph-start) "\\s *$\\|\f\\|^\\<\\|\\* ") |
| 422 | ;; Let all entries for one day behave as one page. | 422 | (set (make-local-variable 'paragraph-separate) paragraph-start) |
| 423 | ;; Match null string on the date-line so that the date-line | 423 | ;; Match null string on the date-line so that the date-line |
| 424 | ;; is grouped with what follows. | 424 | ;; is grouped with what follows. |
| 425 | (set (make-local-variable 'page-delimiter) "^\\<\\|^\f") | 425 | (set (make-local-variable 'page-delimiter) "^\\<\\|^\f") |