mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(epg-wait-for-status): Check if there is no pending
status. Reported by Ted Romer <ted@romerfamily.com>.
This commit is contained in:
parent
b082f79218
commit
47e4971262
2 changed files with 9 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2008-09-27 Daiki Ueno <ueno@unixuser.org>
|
||||
|
||||
* epg.el (epg-wait-for-status): Check if there is no pending
|
||||
status.
|
||||
Reported by Ted Romer <ted@romerfamily.com>.
|
||||
|
||||
2008-09-26 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* startup.el (command-line): Turn on menu-bar-mode and
|
||||
|
|
|
|||
|
|
@ -1168,7 +1168,9 @@ 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) 1))))
|
||||
(accept-process-output (epg-context-process context) 1))
|
||||
(if epg-pending-status-list
|
||||
(epg-context-set-result-for context 'error 'exit))))
|
||||
|
||||
(defun epg-wait-for-completion (context)
|
||||
"Wait until the `epg-gpg-program' process completes."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue