emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 5f64ba0efb: Ensure Eldoc buffer displays on interactive M-x eldoc


From: João Távora
Subject: master 5f64ba0efb: Ensure Eldoc buffer displays on interactive M-x eldoc
Date: Tue, 19 Jul 2022 19:27:32 -0400 (EDT)

branch: master
commit 5f64ba0efbfcbb6dc44add191427aca504b4c3cd
Author: João Távora <joaotavora@gmail.com>
Commit: João Távora <joaotavora@gmail.com>

    Ensure Eldoc buffer displays on interactive M-x eldoc
    
    * 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 | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el
index b08a268c90..724453d766 100644
--- a/lisp/emacs-lisp/eldoc.el
+++ b/lisp/emacs-lisp/eldoc.el
@@ -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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]