From a0365b6f81864488b249de23c2b399e475f312a0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Fri, 9 Nov 2018 01:46:55 +0000 Subject: [PATCH] Fix a bug introduced by previous bugfix MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This commit fixes a bug but introduced another when completing a symbol in xref-find-definitions. commit ee58d92a7de1c8b1914c77177a7d5e755f1de827 Author: Michał Krzywkowski Date: Sun Nov 4 16:59:05 2018 +0100 * eglot.el (xref-backend-identifier-completion-table): Use vector. --- 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 e17717452b4..576d7f39d31 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/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 -- 2.39.2