Skip to content

Commit

Permalink
Fix a bug introduced by previous bugfix
Browse files Browse the repository at this point in the history
This commit fixes a bug but introduced another when completing a
symbol in xref-find-definitions.

commit ee58d92
Author: Michał Krzywkowski <k.michal@zoho.com>
Date:   Sun Nov 4 16:59:05 2018 +0100

* eglot.el (xref-backend-identifier-completion-table): Use vector.
  • Loading branch information
joaotavora committed Nov 9, 2018
1 parent ee243c0 commit a0365b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/progmodes/eglot.el
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a0365b6

Please sign in to comment.