From b2054790358ec89c3c3e0e79afda4adbce7f1dd6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Sat, 24 Sep 2022 09:54:04 +0100 Subject: [PATCH] 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 --- lisp/progmodes/eglot.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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))) -- 2.39.5