From: João Távora Date: Thu, 10 May 2018 21:56:11 +0000 (+0100) Subject: (eglot--xref-make): fix use of cl-destructuring-bind. X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~587 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dfd5947b11edf20b9c95a272d195b8fd737a855c;p=emacs.git (eglot--xref-make): fix use of cl-destructuring-bind. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 4c5d53e3204..635ca26632e 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1176,7 +1176,7 @@ DUMMY is ignored" (defun eglot--xref-make (name uri position) "Like `xref-make' but with LSP's NAME, URI and POSITION." - (cl-destructuring-bind (line character) position + (cl-destructuring-bind (&key line character) position (xref-make name (xref-make-file-location (eglot--uri-to-path uri) ;; F!@(#*&#$)CKING OFF-BY-ONE again