From 6499223125ed680ab5721c5aad55561fe4c37121 Mon Sep 17 00:00:00 2001 From: Evgeni Kolev Date: Mon, 27 Aug 2018 16:17:09 +0300 Subject: [PATCH] When exiting emacs, don't ask the user to confirm killing processes () Copyright-paperwork-exempt: yes * eglot.el (eglot--connect, eglot--inferior-bootstrap): pass noquery t to make-process. GitHub-reference: https://github.com/joaotavora/eglot/issues/83 --- lisp/progmodes/eglot.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 31cce816a1a..4ff7337d11e 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/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 -- 2.39.2