aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2022-11-28 15:32:25 +0100
committerStefan Kangas2022-11-28 15:34:09 +0100
commit5b325a03c50d5d828d2a7934bb74f30a45fa108d (patch)
tree66d4ff925290349bc118b771215e075479125f4a
parent6deeda411c0d2e25eab68ec4c2dccb626937e375 (diff)
downloademacs-5b325a03c50d5d828d2a7934bb74f30a45fa108d.tar.gz
emacs-5b325a03c50d5d828d2a7934bb74f30a45fa108d.zip
; Fix typo in eglot-alternatives (Bug#59653)
* lisp/progmodes/eglot.el (eglot-alternatives): Fix typo. Problem reported by Arash Esbati <arash@gnu.org>.
-rw-r--r--lisp/progmodes/eglot.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 7755353396f..e1041666754 100644
--- a/lisp/progmodes/eglot.el
+++ b/lisp/progmodes/eglot.el
@@ -166,7 +166,7 @@ chosen (interactively or automatically)."
166 (cond ((cdr available) 166 (cond ((cdr available)
167 (cdr (assoc 167 (cdr (assoc
168 (completing-read 168 (completing-read
169 "[eglot] More than one server executable available:" 169 "[eglot] More than one server executable available: "
170 (mapcar #'car available) 170 (mapcar #'car available)
171 nil t nil nil (car (car available))) 171 nil t nil nil (car (car available)))
172 available #'equal))) 172 available #'equal)))