diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-01-11 22:32:14 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-01-11 22:32:14 +0000 |
commit | e90aa86fbfa716c4028f38d0d22654065011a964 (patch) | |
tree | 3db3b2e41c22a5bbb4efdf8f33d989d6ef1cfe37 /editors/emacs | |
parent | 2e09a96f82d4ba15de2c8b8fbbe40fd78e21c185 (diff) | |
parent | c0b5d59bd6f25a6286809cb6f3b80237203b9c79 (diff) |
Merge #2804
2804: Use lsp-seq-first in ra-emacs-lsp since that's more likely to exist r=flodiebold a=flodiebold
Co-authored-by: Florian Diebold <[email protected]>
Diffstat (limited to 'editors/emacs')
-rw-r--r-- | editors/emacs/ra-emacs-lsp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/emacs/ra-emacs-lsp.el b/editors/emacs/ra-emacs-lsp.el index fafb9cbe7..b41a09dea 100644 --- a/editors/emacs/ra-emacs-lsp.el +++ b/editors/emacs/ra-emacs-lsp.el | |||
@@ -68,7 +68,7 @@ | |||
68 | (rust-analyzer--goto-lsp-loc position)))) | 68 | (rust-analyzer--goto-lsp-loc position)))) |
69 | 69 | ||
70 | (defun rust-analyzer--apply-source-change-command (p) | 70 | (defun rust-analyzer--apply-source-change-command (p) |
71 | (let ((data (-> p (ht-get "arguments") (seq-first)))) | 71 | (let ((data (-> p (ht-get "arguments") (lsp-seq-first)))) |
72 | (rust-analyzer--apply-source-change data))) | 72 | (rust-analyzer--apply-source-change data))) |
73 | 73 | ||
74 | (lsp-register-client | 74 | (lsp-register-client |