emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/eglot f9beb19 55/62: When exiting emacs, don't ask the


From: Stefan Monnier
Subject: [elpa] externals/eglot f9beb19 55/62: When exiting emacs, don't ask the user to confirm killing processes (#83)
Date: Sat, 29 Sep 2018 17:13:37 -0400 (EDT)

branch: externals/eglot
commit f9beb19a687692069638e6a3336d16b779096eb4
Author: Evgeni Kolev <address@hidden>
Commit: João Távora <address@hidden>

    When exiting emacs, don't ask the user to confirm killing processes (#83)
    
    
    Copyright-paperwork-exempt: yes
    
    * eglot.el (eglot--connect, eglot--inferior-bootstrap): pass noquery t to
    make-process.
---
 eglot.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/eglot.el b/eglot.el
index 31cce81..4ff7337 100644
--- a/eglot.el
+++ b/eglot.el
@@ -513,6 +513,7 @@ This docstring appeases checkdoc, that's all."
                                 :command contact
                                 :connection-type 'pipe
                                 :coding 'utf-8-emacs-unix
+                                :noquery t
                                 :stderr (get-buffer-create
                                          (format "*%s stderr*" 
readable-name))))))))
          (spread
@@ -627,6 +628,7 @@ CONNECT-ARGS are passed as additional arguments to
                 (make-process
                  :name (format "autostart-inferior-%s" name)
                  :stderr (format "*%s stderr*" name)
+                 :noquery t
                  :command (cl-subst
                            (format "%s" port-number) :autoport contact)))
           (setq connection



reply via email to

[Prev in Thread] Current Thread [Next in Thread]