From: João Távora Date: Tue, 19 Jul 2022 16:50:35 +0000 (+0100) Subject: Fix embarrassing paren-matching blunder in eglot.el X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~29 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b6e041a24be538758727462f042822a8a1d285c7;p=emacs.git Fix embarrassing paren-matching blunder in eglot.el * eglot.el (eglot-handle-request workspace/applyEdit): Fix parens. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index c3ef543e3dc..f9a7d2d1e76 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -2048,7 +2048,7 @@ THINGS are either registrations or unregisterations (sic)." (cl-defmethod eglot-handle-request (_server (_method (eql workspace/applyEdit)) &key _label edit) "Handle server request workspace/applyEdit." - (eglot--apply-workspace-edit edit eglot-confirm-server-initiated-edits)) + (eglot--apply-workspace-edit edit eglot-confirm-server-initiated-edits) `(:applied t)) (cl-defmethod eglot-handle-request