diff options
| author | Glenn Morris | 2009-02-03 08:20:33 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-03 08:20:33 +0000 |
| commit | 5ff43aba5c9cc53e427f7e7c912d33397cda278b (patch) | |
| tree | 321b13c5cc4b572e296172e2915a6f860dba0a66 | |
| parent | 58400e4fa88a691d4dce2eaaba2b74f103eb5045 (diff) | |
| download | emacs-5ff43aba5c9cc53e427f7e7c912d33397cda278b.tar.gz emacs-5ff43aba5c9cc53e427f7e7c912d33397cda278b.zip | |
Tweak previous change.
| -rw-r--r-- | lisp/mail/unrmail.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el index 8fb15f1813c..bd000deddd2 100644 --- a/lisp/mail/unrmail.el +++ b/lisp/mail/unrmail.el | |||
| @@ -193,11 +193,10 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'." | |||
| 193 | (let ((date (mail-fetch-field "date"))) | 193 | (let ((date (mail-fetch-field "date"))) |
| 194 | (or | 194 | (or |
| 195 | (and date | 195 | (and date |
| 196 | (setq date | 196 | (ignore-errors |
| 197 | (ignore-errors | 197 | (format-time-string |
| 198 | (format-time-string | 198 | "%a %b %e %T %Y" |
| 199 | "%a %b %e %T %Y" | 199 | (date-to-time date)))) |
| 200 | (date-to-time date))))) | ||
| 201 | (current-time-string)))))) | 200 | (current-time-string)))))) |
| 202 | 201 | ||
| 203 | ;; If the message specifies a coding system, use it. | 202 | ;; If the message specifies a coding system, use it. |