mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Do not query on notmuch-search exit
Emacs 23.2 queries by default about killing existing processes. This is annoying when one wants to interrupt long search with 'q' key. Disable this behavior for notmuch.
This commit is contained in:
parent
34aa8e8a9c
commit
0234a16b56
1 changed files with 2 additions and 1 deletions
|
@ -951,7 +951,8 @@ The optional parameters are used as follows:
|
|||
"--sort=newest-first")
|
||||
query)))
|
||||
(set-process-sentinel proc 'notmuch-search-process-sentinel)
|
||||
(set-process-filter proc 'notmuch-search-process-filter))))
|
||||
(set-process-filter proc 'notmuch-search-process-filter)
|
||||
(set-process-query-on-exit-flag proc nil))))
|
||||
(run-hooks 'notmuch-search-hook)))
|
||||
|
||||
(defun notmuch-search-refresh-view ()
|
||||
|
|
Loading…
Reference in a new issue