Mercurial > emacs
changeset 21719:c888284a54f7
(change-log-mode): Add `* ' to paragraph-start.
author | Dave Love <fx@gnu.org> |
---|---|
date | Thu, 23 Apr 1998 17:37:12 +0000 |
parents | 361e50e075d8 |
children | b1ee274d921b |
files | lisp/add-log.el |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/add-log.el Thu Apr 23 04:12:09 1998 +0000 +++ b/lisp/add-log.el Thu Apr 23 17:37:12 1998 +0000 @@ -414,12 +414,12 @@ (use-local-map change-log-mode-map) (set (make-local-variable 'fill-paragraph-function) 'change-log-fill-paragraph) - ;; Let each entry behave as one paragraph: - ;; We really do want "^" in paragraph-start below: it is only the lines that - ;; begin at column 0 (despite the left-margin of 8) that we are looking for. - (set (make-local-variable 'paragraph-start) "\\s *$\\|\f\\|^\\<") - (set (make-local-variable 'paragraph-separate) "\\s *$\\|\f\\|^\\<") - ;; Let all entries for one day behave as one page. + ;; We really do want "^" in paragraph-start below: it is only the + ;; lines that begin at column 0 (despite the left-margin of 8) that + ;; we are looking for. Adding `* ' allows eliding the blank line + ;; between entries for different files. + (set (make-local-variable 'paragraph-start) "\\s *$\\|\f\\|^\\<\\|\\* ") + (set (make-local-variable 'paragraph-separate) paragraph-start) ;; Match null string on the date-line so that the date-line ;; is grouped with what follows. (set (make-local-variable 'page-delimiter) "^\\<\\|^\f")