Skip to content

Commit

Permalink
Make it no query to kill processes when quit emacs
Browse files Browse the repository at this point in the history
  • Loading branch information
thattemperature authored and manateelazycat committed Oct 5, 2024
1 parent dfaeb7f commit 4310ecd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/eaf-epc.el
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,7 @@ This variable is used for the management purpose.")
(set-process-filter process
(lambda (p m)
(eaf-epc-process-filter connection p m)))
(set-process-query-on-exit-flag process nil)
(set-process-sentinel process
(lambda (p e)
(eaf-epc-process-sentinel connection p e)))
Expand Down Expand Up @@ -751,6 +752,7 @@ This variable is used for the management purpose.")
:server t
:host "127.0.0.1"
:service (or port t)
:noquery t
:sentinel
(lambda (process message)
(eaf-epc-server-sentinel process message connect-function)))))
Expand Down

0 comments on commit 4310ecd

Please sign in to comment.