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
7bda18cc
Commit
7bda18cc
authored
Sep 23, 2009
by
Daiki Ueno
Browse files
(epg-wait-for-status): Preserve existing 'error results.
parent
0aa4f295
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/epg.el
lisp/epg.el
+4
-1
No files found.
lisp/ChangeLog
View file @
7bda18cc
2009-09-23 Daiki Ueno <ueno@unixuser.org>
* epg.el (epg-wait-for-status): Preserve existing 'error results.
2009-09-22 Sam Steingold <sds@gnu.org>
* vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
...
...
lisp/epg.el
View file @
7bda18cc
...
...
@@ -1187,7 +1187,10 @@ This function is for internal use only."
epg-pending-status-list
)
(
accept-process-output
(
epg-context-process
context
)
1
))
(
if
epg-pending-status-list
(
epg-context-set-result-for
context
'error
'exit
))))
(
epg-context-set-result-for
context
'error
(
cons
(
list
'exit
)
(
epg-context-result-for
context
'error
))))))
(
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