diff options
| -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. |