tag: 1.2
commit 989647a11d33ee1ae257e4728b6ea35ff8ae88e1
Author: Evgeni Kolev <[email protected]>
Commit: João Távora <[email protected]>
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