aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2009-02-03 08:20:33 +0000
committerGlenn Morris <[email protected]>2009-02-03 08:20:33 +0000
commit5ff43aba5c9cc53e427f7e7c912d33397cda278b (patch)
tree321b13c5cc4b572e296172e2915a6f860dba0a66
parent58400e4fa88a691d4dce2eaaba2b74f103eb5045 (diff)
Tweak previous change.
-rw-r--r--lisp/mail/unrmail.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el
index 8fb15f1813..bd000deddd 100644
--- a/lisp/mail/unrmail.el
+++ b/lisp/mail/unrmail.el
@@ -193,11 +193,10 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'."
(let ((date (mail-fetch-field "date")))
(or
(and date
- (setq date
- (ignore-errors
- (format-time-string
- "%a %b %e %T %Y"
- (date-to-time date)))))
+ (ignore-errors
+ (format-time-string
+ "%a %b %e %T %Y"
+ (date-to-time date))))
(current-time-string))))))
;; If the message specifies a coding system, use it.