tag: 1.2
commit 912d10f0319f1f9288968b76c3d7737d1aeaed95
Author: João Távora <[email protected]>
Commit: João Távora <[email protected]>

    Fix a bug introduced by previous bugfix
    
    This commit fixes a bug but introduced another when completing a
    symbol in xref-find-definitions.
    
    commit 118f9668e45ea424d8090013392ace154538f1e4
    Author: Michał Krzywkowski <[email protected]>
    Date:   Sun Nov 4 16:59:05 2018 +0100
    
    * eglot.el (xref-backend-identifier-completion-table): Use vector.
---
 eglot.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eglot.el b/eglot.el
index e177174..576d7f3 100644
--- a/eglot.el
+++ b/eglot.el
@@ -1374,7 +1374,7 @@ DUMMY is ignored."
                                     :position (plist-get
                                                (plist-get location :range)
                                                :start))
-                              :locations (list location)
+                              :locations (vector location)
                               :kind kind
                               :containerName containerName))
                 (jsonrpc-request server

Reply via email to