From: Stephen Leake Date: Tue, 1 Nov 2022 00:30:02 +0000 (-0700) Subject: Fix eglot-shutdown-all: Match current eglot-shutdown signature X-Git-Tag: emacs-29.0.90~1616^2~364 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4cc32937c06f7dd66da025fdb98369f456f1af0a;p=emacs.git Fix eglot-shutdown-all: Match current eglot-shutdown signature --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index c5870618372..0a0d73eb6d2 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -877,7 +877,7 @@ SERVER." PRESERVE-BUFFERS as in `eglot-shutdown', which see." (interactive (list current-prefix-arg)) (cl-loop for ss being the hash-values of eglot--servers-by-project - do (cl-loop for s in ss do (eglot-shutdown s nil preserve-buffers)))) + do (cl-loop for s in ss do (eglot-shutdown s nil nil preserve-buffers)))) (defun eglot--on-shutdown (server) "Called by jsonrpc.el when SERVER is already dead."