emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/eglot 83052a5e61: Per #940: Fix blunder in eglot--guess


From: ELPA Syncer
Subject: [elpa] externals/eglot 83052a5e61: Per #940: Fix blunder in eglot--guess-contact
Date: Sat, 24 Sep 2022 04:57:41 -0400 (EDT)

branch: externals/eglot
commit 83052a5e61267a2e1c091c1bd4301ea81f1bc6d7
Author: João Távora <joaotavora@gmail.com>
Commit: João Távora <joaotavora@gmail.com>

    Per #940: Fix blunder in eglot--guess-contact
    
    * eglot.el (eglot--guess-contact): Add back
    'split-string-and-unquote' lost in #940 fix.
---
 eglot.el | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/eglot.el b/eglot.el
index 718a42dbd7..650b4ccccc 100644
--- a/eglot.el
+++ b/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)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]