]> git.eshelyaron.com Git - emacs.git/commitdiff
Ensure Eldoc buffer displays on interactive M-x eldoc
authorJoão Távora <joaotavora@gmail.com>
Tue, 19 Jul 2022 23:24:44 +0000 (00:24 +0100)
committerJoão Távora <joaotavora@gmail.com>
Tue, 19 Jul 2022 23:27:56 +0000 (00:27 +0100)
* lisp/emacs-lisp/eldoc.el (eldoc-display-in-buffer): Call
eldoc-doc-buffer with interactive set to t.
(Version): Bump to 1.13.0.

lisp/emacs-lisp/eldoc.el

index b08a268c90f1590fc4b976f88deadbcc890395df..724453d766138fbf5326fd4c8d562df565666c3a 100644 (file)
@@ -5,7 +5,7 @@
 ;; Author: Noah Friedman <friedman@splode.com>
 ;; Keywords: extensions
 ;; Created: 1995-10-06
-;; Version: 1.12.0
+;; Version: 1.13.0
 ;; Package-Requires: ((emacs "26.3"))
 
 ;; This is a GNU ELPA :core package.  Avoid functionality that is not
@@ -629,8 +629,7 @@ Honor `eldoc-echo-area-use-multiline-p' and
   "Display DOCS in a dedicated buffer.
 If INTERACTIVE is t, also display the buffer."
   (eldoc--format-doc-buffer docs)
-  (when interactive
-    (eldoc-doc-buffer)))
+  (when interactive (eldoc-doc-buffer t)))
 
 (defun eldoc-documentation-default ()
   "Show first doc string for item at point.