From: yamaoka Date: Tue, 8 Jul 2003 23:56:18 +0000 (+0000) Subject: Synch to Gnus 200307082319. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=ff8b687d70a160c672c5c5471a377cd580057ceb;p=elisp%2Fgnus.git- Synch to Gnus 200307082319. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eef1806..8c1c2b4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-07-09 Jesper Harder + + * mail-source.el (mail-source-movemail): Handle non-numerical + return values. + 2003-07-08 Jesper Harder * mailcap.el (mailcap-parse-args-syntax-table) diff --git a/lisp/mail-source.el b/lisp/mail-source.el index 4d34f30..0045cc3 100644 --- a/lisp/mail-source.el +++ b/lisp/mail-source.el @@ -609,7 +609,8 @@ Pass INFO on to CALLBACK." (set-file-modes to mail-source-default-file-modes)) (if (and (or (not (buffer-modified-p errors)) (zerop (buffer-size errors))) - (zerop result)) + (and (numberp result) + (zerop result))) ;; No output => movemail won. t (set-buffer errors)