summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1992-09-04 21:28:29 +0000
committerRichard M. Stallman <rms@gnu.org>1992-09-04 21:28:29 +0000
commit2c91c85ce0f831e6636e9152c6d05b1efe39d392 (patch)
treef2d153806d7e2a7a43e691d918ce3809f193ceb0
parentd872b7483c74b8e03501db57e13c96e8df444d0d (diff)
downloademacs-2c91c85ce0f831e6636e9152c6d05b1efe39d392.tar.gz
*** empty log message ***
-rw-r--r--lisp/add-log.el9
-rw-r--r--lisp/mail/rmail.el4
2 files changed, 5 insertions, 8 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index d13f6958d1c..0d9832d26dd 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -195,12 +195,9 @@ Runs `change-log-mode-hook'."
(set (make-local-variable 'paragraph-start) "^\\s *$\\|^^L")
(set (make-local-variable 'paragraph-separate) "^\\s *$\\|^^L\\|^\\sw")
;; Let all entries for one day behave as one page.
- ;; Note that a page boundary is also a paragraph boundary.
- ;; Unfortunately the date line of a page actually belongs to
- ;; the next day, but I don't see how to avoid that since
- ;; page moving cmds go to the end of the match, and Emacs
- ;; regexps don't have a context feature.
- (set (make-local-variable 'page-delimiter) "^[A-Z][a-z][a-z] .*\n\\|^ ")
+ ;; Match null string on the date-line so that the date-line
+ ;; is grouped with what follows.
+ (set (make-local-variable 'page-delimiter) "^\\<\\|^ ")
(set (make-local-variable 'version-control) 'never)
(set (make-local-variable 'adaptive-fill-regexp) "\\s *")
(run-hooks 'change-log-mode-hook))
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 884dbe634ee..2d4a225cd65 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -319,8 +319,8 @@ Instead, these commands are available:
Any other label is present only if you add it with `a'.
\\[rmail-previous-labeled-message] Move to Previous message with specified label
\\[rmail-summary] Show headers buffer, with a one line summary of each message.
-\\[rmail-summary-by-labels] Like h only just messages with particular label(s) are summarized.
-\\[rmail-summary-by-recipients] Like h only just messages with particular recipient(s) are summarized.
+\\[rmail-summary-by-labels] Like \\[rmail-summary] only just messages with particular label(s) are summarized.
+\\[rmail-summary-by-recipients] Like \\[rmail-summary] only just messages with particular recipient(s) are summarized.
\\[rmail-toggle-header] Toggle header, show Rmail header if unformatted or vice versa.
\\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail."
(interactive)