diff options
Diffstat (limited to 'lisp/gnus/pop3.el')
-rw-r--r-- | lisp/gnus/pop3.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el index fc593806bfc..41ebe986220 100644 --- a/lisp/gnus/pop3.el +++ b/lisp/gnus/pop3.el @@ -644,9 +644,7 @@ If NOW, use that time instead." (format " %s " (capitalize (car (rassoc (nth 4 (decode-time now)) parse-time-months)))) - (format-time-string "%Y %H:%M:%S " now) - ;; We do all of this because XEmacs doesn't have the %z spec. - (format "%s%02d%02d" sign (/ zone 3600) (/ (% zone 3600) 60))))) + (format-time-string "%Y %H:%M:%S %z" now)))) (defun pop3-munge-message-separator (start end) "Check to see if a message separator exists. If not, generate one." |