From: ueno Date: Thu, 25 May 2006 09:20:20 +0000 (+0000) Subject: Increase the timeout value. X-Git-Tag: epg-0_0_2~33 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=9a20da8e29e3f9a67260b9352aad6e689bac8040;p=elisp%2Fepg.git Increase the timeout value. --- diff --git a/epg.el b/epg.el index 3c4bd34..8627018 100644 --- a/epg.el +++ b/epg.el @@ -880,12 +880,12 @@ This function is for internal use only." (setq epg-pending-status-list status-list) (while (and (eq (process-status (epg-context-process context)) 'run) epg-pending-status-list) - (accept-process-output (epg-context-process context) 0 1)))) + (accept-process-output (epg-context-process context) 1)))) (defun epg-wait-for-completion (context) "Wait until the `epg-gpg-program' process completes." (while (eq (process-status (epg-context-process context)) 'run) - (accept-process-output (epg-context-process context) 0 1))) + (accept-process-output (epg-context-process context) 1))) (defun epg-reset (context) "Reset the CONTEXT."