1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-19 05:13:34 -07:00

Eglot: fix edebug spec of eglot--dbind

* lisp/progmodes/eglot.el (eglot--dbind): Fix edebug spec.
This commit is contained in:
João Távora 2025-01-22 22:02:00 +00:00
parent 7e2f6ce0cb
commit 9068dcbd71

View file

@ -794,7 +794,7 @@ compile time if an undeclared LSP interface is used."))
"Destructure OBJECT, binding VARS in BODY.
VARS is ([(INTERFACE)] SYMS...)
Honor `eglot-strict-mode'."
(declare (indent 2) (debug (sexp sexp &rest form)))
(declare (indent 2) (debug (sexp form &rest form)))
(let ((interface-name (if (consp (car vars))
(car (pop vars))))
(object-once (make-symbol "object-once"))