From 9a20da8e29e3f9a67260b9352aad6e689bac8040 Mon Sep 17 00:00:00 2001 From: ueno Date: Thu, 25 May 2006 09:20:20 +0000 Subject: [PATCH] Increase the timeout value. --- epg.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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." -- 1.7.10.4