From ff8b687d70a160c672c5c5471a377cd580057ceb Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 8 Jul 2003 23:56:18 +0000 Subject: [PATCH] Synch to Gnus 200307082319. --- lisp/ChangeLog | 5 +++++ lisp/mail-source.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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) -- 1.7.10.4