diff options
| author | Glenn Morris | 2009-02-26 08:23:05 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-26 08:23:05 +0000 |
| commit | ee6ccffcefbf93ad9d74098661dc01dfb2548bbc (patch) | |
| tree | 50b59515952be736ada490d84cd14de57d2d7017 | |
| parent | d6223c239109592e7497043392b7d562cfb2df52 (diff) | |
| download | emacs-ee6ccffcefbf93ad9d74098661dc01dfb2548bbc.tar.gz emacs-ee6ccffcefbf93ad9d74098661dc01dfb2548bbc.zip | |
(rmail-summary-rmail-update): Use rmail-message-unseen-p.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/mail/rmailsum.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c5e69421eed..acde5bb82b1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2009-02-26 Glenn Morris <rgm@gnu.org> | 1 | 2009-02-26 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * mail/rmailsum.el (rmail-summary-rmail-update): | ||
| 4 | Use rmail-message-unseen-p. | ||
| 5 | |||
| 3 | * progmodes/cc-vars.el (c-style-variables-are-local-p): | 6 | * progmodes/cc-vars.el (c-style-variables-are-local-p): |
| 4 | Mark as safe if boolean. (Bug#2197) | 7 | Mark as safe if boolean. (Bug#2197) |
| 5 | 8 | ||
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 6821c1a3443..6ae14d74320 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el | |||
| @@ -947,7 +947,7 @@ Search, the `unseen' attribute is restored.") | |||
| 947 | ;; Arrange to do that later, for the new current message, | 947 | ;; Arrange to do that later, for the new current message, |
| 948 | ;; if it still has `unseen'. | 948 | ;; if it still has `unseen'. |
| 949 | (setq rmail-summary-put-back-unseen | 949 | (setq rmail-summary-put-back-unseen |
| 950 | (rmail-message-attr-p msg-num rmail-unseen-attr-index))) | 950 | (rmail-message-unseen-p msg-num))) |
| 951 | (setq rmail-summary-put-back-unseen nil)) | 951 | (setq rmail-summary-put-back-unseen nil)) |
| 952 | ;; Go to the desired message. | 952 | ;; Go to the desired message. |
| 953 | (setq rmail-current-message msg-num) | 953 | (setq rmail-current-message msg-num) |