mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
emacs: Don't report CLI signals sent by Emacs as errors
Previously, when the user killed the search buffer before the CLI search process had completed, we would report the signal sent by Emacs to kill the CLI to the user as an error. Fix this by only reporting error exits if the process buffer is still live. We still report stderr output regardless in case stderr output was relevant to why the user killed the search buffer (such as a wrapper script being stuck).
This commit is contained in:
parent
8d6aa603ef
commit
634914064b
1 changed files with 6 additions and 2 deletions
|
@ -528,8 +528,12 @@ status."
|
|||
(when sub-sentinel
|
||||
(funcall sub-sentinel proc event))
|
||||
;; Check the exit status. This will signal an error if the
|
||||
;; exit status is non-zero.
|
||||
(notmuch-check-async-exit-status proc event real-command err-file)
|
||||
;; exit status is non-zero. Don't do this if the process
|
||||
;; buffer is dead since that means Emacs killed the process
|
||||
;; and there's no point in telling the user that (but we
|
||||
;; still check for and report stderr output below).
|
||||
(when (buffer-live-p (process-buffer proc))
|
||||
(notmuch-check-async-exit-status proc event real-command err-file))
|
||||
;; If that didn't signal an error, then any error output was
|
||||
;; really warning output. Show warnings, if any.
|
||||
(let ((warnings
|
||||
|
|
Loading…
Reference in a new issue