From: João Távora Date: Sat, 24 Sep 2022 08:54:04 +0000 (+0100) Subject: Fix blunder in eglot--guess-contact X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~11 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b2054790358ec89c3c3e0e79afda4adbce7f1dd6;p=emacs.git Fix blunder in eglot--guess-contact * eglot.el (eglot--guess-contact): Add back 'split-string-and-unquote' lost in https://github.com/joaotavora/eglot/issues/940 fix. GitHub-reference: per https://github.com/joaotavora/eglot/issues/940 --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 718a42dbd75..650b4cccccb 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -957,10 +957,11 @@ be guessed." program guess)))))) (contact (or (and prompt - (read-shell-command - prompt - full-program-invocation - 'eglot-command-history)) + (split-string-and-unquote + (read-shell-command + prompt + full-program-invocation + 'eglot-command-history))) guess))) (list managed-mode (eglot--current-project) class contact language-id)))