diff options
author | Florian Diebold <[email protected]> | 2019-03-02 19:58:06 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-03-03 02:00:17 +0000 |
commit | d7f113e7a6a0c52552ff253984b234176c693b71 (patch) | |
tree | c6d87c2e7bc352d7c1eb29b5418363bc5ca1278b | |
parent | affaf7700a86942f82e4cb25348c719bb928399a (diff) |
emacs: Fix (void-variable rust-analyzer--last-runnable)
-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 4af65c7f0..780182f8a 100644 --- a/editors/emacs/ra-emacs-lsp.el +++ b/editors/emacs/ra-emacs-lsp.el | |||
@@ -138,7 +138,7 @@ | |||
138 | (add-hook 'rust-mode-hook 'rust-analyzer--add-er-expansion)) | 138 | (add-hook 'rust-mode-hook 'rust-analyzer--add-er-expansion)) |
139 | 139 | ||
140 | ;; runnables | 140 | ;; runnables |
141 | (defvar rust-analyzer--last-runnable) | 141 | (defvar rust-analyzer--last-runnable nil) |
142 | 142 | ||
143 | (defun rust-analyzer--runnables-params () | 143 | (defun rust-analyzer--runnables-params () |
144 | (list :textDocument (lsp--text-document-identifier) | 144 | (list :textDocument (lsp--text-document-identifier) |