]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-summary-by-labels): No longer concatenate
authorAlex Schroeder <alex@gnu.org>
Tue, 17 Jan 2006 10:03:12 +0000 (10:03 +0000)
committerAlex Schroeder <alex@gnu.org>
Tue, 17 Jan 2006 10:03:12 +0000 (10:03 +0000)
regexp with commas because of recent change to
rmail-message-labels-p.
(rmail-summary-rmail-update): Replace rmail-message-labels-p test
with simple rmail-desc-get-keywords.

lisp/mail/rmailsum.el

index c786b07340576d2f72cd1e851419f603757a7bcd..d95a4201b7ffef89dfa1c283b953d2d22996adfc 100644 (file)
@@ -101,7 +101,7 @@ LABELS should be a string containing the desired labels, separated by commas."
   (rmail-new-summary (concat "labels " labels)
                     (list 'rmail-summary-by-labels labels)
                     'rmail-message-labels-p
-                    (concat ", \\(" (mail-comma-list-regexp labels) "\\),")))
+                    (mail-comma-list-regexp labels)))
 
 ;;;###autoload
 (defun rmail-summary-by-recipients (recipients &optional primary-only)
@@ -803,7 +803,7 @@ message and highlight the buffer."
                    ;; Arrange to do that later, for the new current message,
                    ;; if it still has `unseen'.
                    (setq rmail-summary-put-back-unseen
-                         (rmail-message-labels-p msg-num ", ?\\(unseen\\),")))
+                         (member "unseen" (rmail-desc-get-keywords msg-num))))
                (setq rmail-summary-put-back-unseen nil))
 
              ;; Go to the desired message.