emacs-diffs
[Top][All Lists]
Advanced

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

feature/eglot2emacs b205479035 108/120: Fix blunder in eglot--guess-cont


From: João Távora
Subject: feature/eglot2emacs b205479035 108/120: Fix blunder in eglot--guess-contact
Date: Thu, 20 Oct 2022 07:17:07 -0400 (EDT)

branch: feature/eglot2emacs
commit b2054790358ec89c3c3e0e79afda4adbce7f1dd6
Author: João Távora <joaotavora@gmail.com>
Commit: João Távora <joaotavora@gmail.com>

    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 718a42dbd7..650b4ccccc 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)))
 



reply via email to

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