diff options
author | João Távora <joaotavora@gmail.com> | 2023-03-02 13:27:14 +0000 |
---|---|---|
committer | João Távora <joaotavora@gmail.com> | 2023-03-02 13:42:15 +0000 |
commit | 67befc1f5a5492fee5fb3891083df77831ec830e (patch) | |
tree | fd31c0539199cf03bf8927e722a2524441dd3a70 /lisp/progmodes/eglot.el | |
parent | 1c7b2673bddc711abd032df5fbff38fc48aba16d (diff) | |
download | emacs-67befc1f5a5492fee5fb3891083df77831ec830e.tar.gz emacs-67befc1f5a5492fee5fb3891083df77831ec830e.tar.bz2 emacs-67befc1f5a5492fee5fb3891083df77831ec830e.zip |
Eglot: use shell-file-name in eglot--cmd (bug#61748)
* lisp/progmodes/eglot.el (eglot--cmd): Use shell-file-name.
Diffstat (limited to 'lisp/progmodes/eglot.el')
-rw-r--r-- | lisp/progmodes/eglot.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 36aafac8938..b17370ebf8b 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1206,7 +1206,7 @@ Each function is passed the server as an argument") ;; ;; Not only does this seem like there should be a better way, ;; but it almost certainly doesn’t work on non-unix systems. - (list "sh" "-c" + (list shell-file-name "-c" (string-join (cons "stty raw > /dev/null;" (mapcar #'shell-quote-argument contact)) " ")) |