]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a defcustom :type in eldoc.el
authorMauro Aranda <maurooaranda@gmail.com>
Sat, 14 Oct 2023 13:34:54 +0000 (10:34 -0300)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 14 Oct 2023 18:54:04 +0000 (20:54 +0200)
* lisp/emacs-lisp/eldoc.el (eldoc-echo-area-prefer-doc-buffer): Make
:type a choice, to allow for the value 'maybe'.  (Bug##66539)

lisp/emacs-lisp/eldoc.el

index a175edcc671ff7035166f78f221b9e17e095ab54..7cd676b8e505cc60658bde9eb2ef4e81e66b66f4 100644 (file)
@@ -132,7 +132,9 @@ documentation in the echo area if the dedicated documentation
 buffer (displayed by `eldoc-doc-buffer') is already displayed in
 some window.  If the value is the symbol `maybe', then the echo area
 is only skipped if the documentation needs to be truncated there."
-  :type 'boolean)
+  :type '(choice (const :tag "Prefer ElDoc's documentation buffer" t)
+                 (const :tag "Prefer echo area" nil)
+                 (const :tag "Skip echo area if truncating" maybe)))
 
 (defface eldoc-highlight-function-argument
   '((t (:inherit bold)))