From: Glenn Morris Date: Tue, 3 Feb 2009 08:20:33 +0000 (+0000) Subject: Tweak previous change. X-Git-Tag: emacs-pretest-23.0.91~439 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5ff43aba5c9cc53e427f7e7c912d33397cda278b;p=emacs.git Tweak previous change. --- 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'." (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.