File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -9925,12 +9925,10 @@ In case the major-mode that you are using for "
99259925 (let ((start-plain (make-temp-file "plain" nil ".el")))
99269926 (url-copy-file "https://raw.githubusercontent.com/emacs-lsp/lsp-mode/master/scripts/lsp-start-plain.el"
99279927 start-plain t)
9928- (async-shell-command
9929- (format "%s -q -l %s %s"
9930- (expand-file-name invocation-name invocation-directory)
9931- start-plain
9932- (or (buffer-file-name) ""))
9933- (generate-new-buffer " *lsp-start-plain*"))))
9928+ (start-process "lsp-start-plain"
9929+ (generate-new-buffer " *lsp-start-plain*")
9930+ (expand-file-name invocation-name invocation-directory)
9931+ "-q" "-l" start-plain (or (buffer-file-name) ""))))
99349932
99359933
99369934
You can’t perform that action at this time.
0 commit comments