aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/add-log.el
diff options
context:
space:
mode:
authorDave Love <[email protected]>1998-04-23 17:37:12 +0000
committerDave Love <[email protected]>1998-04-23 17:37:12 +0000
commit4b7d4d0d0b56ff29e830089eec87b3a91ac78ffb (patch)
tree1379387cc2d68d5f2a7d0f83bf3110e104e0eb70 /lisp/add-log.el
parent3e8ceaacd123dac9acb113fb39093fb1070296ef (diff)
(change-log-mode): Add `* ' to paragraph-start.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r--lisp/add-log.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index cb3873750c..1361b6832e 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -414,12 +414,12 @@ Runs `change-log-mode-hook'."
(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")