From: João Távora Date: Tue, 15 Oct 2019 17:42:33 +0000 (+0100) Subject: Fix bug in workspace/didchangewatchedfiles X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~302 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=320356985a9315453c3551ee835a22979c543dd5;p=emacs.git Fix bug in workspace/didchangewatchedfiles * eglot.el (eglot-register-capability): Fix a bug and a couple of warnings. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 970f024db1b..f757a8ac4ff 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -2415,8 +2415,8 @@ If SKIP-SIGNATURE, don't try to send textDocument/signatureHelp." (changed 2) (deleted 3))))))) ((eq action 'renamed) - (handle-event '(desc 'deleted file)) - (handle-event '(desc 'created file1))))))) + (handle-event `(,desc 'deleted ,file)) + (handle-event `(,desc 'created ,file1))))))) (unwind-protect (progn (dolist (dir glob-dirs)