mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: notmuch-start-notmuch-error-sentinel: assert buffer is alive
This commit is contained in:
parent
0afb3f8b21
commit
d57ce9ca71
1 changed files with 2 additions and 1 deletions
|
@ -956,7 +956,8 @@ status."
|
|||
|
||||
(defun notmuch-start-notmuch-error-sentinel (proc event)
|
||||
(let ((buffer (process-get proc 'err-buffer)))
|
||||
(kill-buffer buffer)))
|
||||
(when (buffer-live-p buffer)
|
||||
(kill-buffer buffer))))
|
||||
|
||||
(defvar-local notmuch-show-process-crypto nil)
|
||||
|
||||
|
|
Loading…
Reference in a new issue