From 89b13f8dccd0cc14e78e9d953375da6dcc034103 Mon Sep 17 00:00:00 2001 From: Mauro Aranda Date: Sun, 15 Oct 2023 10:43:50 -0300 Subject: [PATCH] Fix eglot-report-progress :type * lisp/progmodes/eglot.el (eglot-report-progress): Change :type to choice, to allow 'messages' as a value. (Bug#66556) --- lisp/progmodes/eglot.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index e511df01850..da92647bc93 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -467,7 +467,9 @@ eglot-report-progress "If non-nil, show progress of long running LSP server work. If set to `messages', use *Messages* buffer, else use Eglot's mode line indicator." - :type 'boolean + :type '(choice (const :tag "Don't show progress" nil) + (const :tag "Show progress in *Messages*" messages) + (const :tag "Show progress in Eglot's mode line indicator" t)) :version "1.10") (defcustom eglot-ignored-server-capabilities (list) -- 2.34.1