diff options
| author | Stefan Kangas | 2022-11-28 15:32:25 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-11-28 15:34:09 +0100 |
| commit | 5b325a03c50d5d828d2a7934bb74f30a45fa108d (patch) | |
| tree | 66d4ff925290349bc118b771215e075479125f4a | |
| parent | 6deeda411c0d2e25eab68ec4c2dccb626937e375 (diff) | |
| download | emacs-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.el | 2 |
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))) |