diff options
author | Sergey Parilin <[email protected]> | 2019-04-02 15:55:14 +0100 |
---|---|---|
committer | Sergey Parilin <[email protected]> | 2019-04-02 15:55:14 +0100 |
commit | b74449e9952846a8ea66c3507e52c24348d6dbc9 (patch) | |
tree | 00bb1101334b0bf1b189a2e6451cb28e0af959a1 /editors/emacs | |
parent | 9b73f809596e955216dde24fcf921d6985a1a767 (diff) | |
parent | 849d7428aa6b733d452b2ebc55ec322d96345f49 (diff) |
Merge remote-tracking branch 'upstream/master' into issue961_profiling
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 955703edb..84c018b66 100644 --- a/editors/emacs/ra-emacs-lsp.el +++ b/editors/emacs/ra-emacs-lsp.el | |||
@@ -159,7 +159,7 @@ | |||
159 | (interactive (list (rust-analyzer--select-runnable))) | 159 | (interactive (list (rust-analyzer--select-runnable))) |
160 | (-let (((&hash "env" "bin" "args" "label") runnable)) | 160 | (-let (((&hash "env" "bin" "args" "label") runnable)) |
161 | (compilation-start | 161 | (compilation-start |
162 | (string-join (cons bin args) " ") | 162 | (string-join (append (list bin) args '()) " ") |
163 | ;; cargo-process-mode is nice, but try to work without it... | 163 | ;; cargo-process-mode is nice, but try to work without it... |
164 | (if (functionp 'cargo-process-mode) 'cargo-process-mode nil) | 164 | (if (functionp 'cargo-process-mode) 'cargo-process-mode nil) |
165 | (lambda (_) (concat "*" label "*"))) | 165 | (lambda (_) (concat "*" label "*"))) |