Increase the timeout value.
authorueno <ueno>
Thu, 25 May 2006 09:20:20 +0000 (09:20 +0000)
committerueno <ueno>
Thu, 25 May 2006 09:20:20 +0000 (09:20 +0000)
epg.el

diff --git a/epg.el b/epg.el
index 3c4bd34..8627018 100644 (file)
--- 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."