Merge #1071
1071: Fix emacs-lsp runnables support with native json r=matklad a=flodiebold (In that case args is a vector, which string-join doesn't like.) Co-authored-by: Florian Diebold <florian.diebold@freiheit.com>
This commit is contained in:
commit
849d7428aa
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@
|
|||
(interactive (list (rust-analyzer--select-runnable)))
|
||||
(-let (((&hash "env" "bin" "args" "label") runnable))
|
||||
(compilation-start
|
||||
(string-join (cons bin args) " ")
|
||||
(string-join (append (list bin) args '()) " ")
|
||||
;; cargo-process-mode is nice, but try to work without it...
|
||||
(if (functionp 'cargo-process-mode) 'cargo-process-mode nil)
|
||||
(lambda (_) (concat "*" label "*")))
|
||||
|
|
Loading…
Add table
Reference in a new issue