changeset 1078:15b4ed20e524

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Fri, 04 Sep 1992 21:28:29 +0000
parents d6ee6ff7562d
children 0c960257c363
files lisp/add-log.el lisp/mail/rmail.el
diffstat 2 files changed, 5 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/add-log.el	Fri Sep 04 11:17:33 1992 +0000
+++ b/lisp/add-log.el	Fri Sep 04 21:28:29 1992 +0000
@@ -195,12 +195,9 @@
   (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))
--- a/lisp/mail/rmail.el	Fri Sep 04 11:17:33 1992 +0000
+++ b/lisp/mail/rmail.el	Fri Sep 04 21:28:29 1992 +0000
@@ -319,8 +319,8 @@
           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)