emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/eglot 0625b6c 123/139: (eglot--xref-make): Fix Use of c


From: João Távora
Subject: [elpa] externals/eglot 0625b6c 123/139: (eglot--xref-make): Fix Use of cl-destructuring-bind.
Date: Mon, 14 May 2018 09:55:06 -0400 (EDT)

branch: externals/eglot
commit 0625b6c639bac70da71e35c3870896e731c6ebc7
Author: João Távora <address@hidden>
Commit: João Távora <address@hidden>

    (eglot--xref-make): Fix Use of cl-destructuring-bind.
---
 eglot.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eglot.el b/eglot.el
index 4c5d53e..635ca26 100644
--- a/eglot.el
+++ b/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



reply via email to

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