diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/emacs-lisp/eldoc.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index a175edcc671..7cd676b8e50 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el | |||
| @@ -132,7 +132,9 @@ documentation in the echo area if the dedicated documentation | |||
| 132 | buffer (displayed by `eldoc-doc-buffer') is already displayed in | 132 | buffer (displayed by `eldoc-doc-buffer') is already displayed in |
| 133 | some window. If the value is the symbol `maybe', then the echo area | 133 | some window. If the value is the symbol `maybe', then the echo area |
| 134 | is only skipped if the documentation needs to be truncated there." | 134 | is only skipped if the documentation needs to be truncated there." |
| 135 | :type 'boolean) | 135 | :type '(choice (const :tag "Prefer ElDoc's documentation buffer" t) |
| 136 | (const :tag "Prefer echo area" nil) | ||
| 137 | (const :tag "Skip echo area if truncating" maybe))) | ||
| 136 | 138 | ||
| 137 | (defface eldoc-highlight-function-argument | 139 | (defface eldoc-highlight-function-argument |
| 138 | '((t (:inherit bold))) | 140 | '((t (:inherit bold))) |