Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
47e49712
Commit
47e49712
authored
Sep 27, 2008
by
Daiki Ueno
Browse files
(epg-wait-for-status): Check if there is no pending
status. Reported by Ted Romer <ted@romerfamily.com>.
parent
b082f792
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
lisp/ChangeLog
lisp/ChangeLog
+6
-0
lisp/epg.el
lisp/epg.el
+3
-1
No files found.
lisp/ChangeLog
View file @
47e49712
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
...
...
lisp/epg.el
View file @
47e49712
...
...
@@ -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."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment