emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/eglot2emacs b6e041a24b 090/120: Fix embarrassing paren-matching


From: João Távora
Subject: feature/eglot2emacs b6e041a24b 090/120: Fix embarrassing paren-matching blunder in eglot.el
Date: Thu, 20 Oct 2022 07:17:02 -0400 (EDT)

branch: feature/eglot2emacs
commit b6e041a24be538758727462f042822a8a1d285c7
Author: João Távora <joaotavora@gmail.com>
Commit: João Távora <joaotavora@gmail.com>

    Fix embarrassing paren-matching blunder in eglot.el
    
    * eglot.el (eglot-handle-request workspace/applyEdit): Fix parens.
---
 lisp/progmodes/eglot.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index c3ef543e3d..f9a7d2d1e7 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]