From 320356985a9315453c3551ee835a22979c543dd5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Tue, 15 Oct 2019 18:42:33 +0100 Subject: [PATCH] Fix bug in workspace/didchangewatchedfiles * eglot.el (eglot-register-capability): Fix a bug and a couple of warnings. --- lisp/progmodes/eglot.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.2