diff options
Diffstat (limited to 'lisp/mail/feedmail.el')
-rw-r--r-- | lisp/mail/feedmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el index ff178241a90..a90d9c46578 100644 --- a/lisp/mail/feedmail.el +++ b/lisp/mail/feedmail.el @@ -2369,7 +2369,7 @@ mapped to mostly alphanumerics for safety." (defun feedmail-rfc822-date (arg-time) (feedmail-say-debug ">in-> feedmail-rfc822-date %s" arg-time) - (let ((time (if arg-time arg-time (current-time))) + (let ((time (or arg-time (current-time))) (system-time-locale "C")) (concat (format-time-string "%a, %e %b %Y %T " time) |