diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-02 11:56:55 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-02 11:56:55 +0200 |
commit | 6fd1fb8a6837acde8e1c9ab26618ec0f36121c72 (patch) | |
tree | 10ffd3d1734a501c4e321c4b8b2c743a36f84693 /lisp/emacs-lisp | |
parent | a306d9096ec8b6be1fefe58235a3c8933e9f6f2a (diff) | |
download | emacs-6fd1fb8a6837acde8e1c9ab26618ec0f36121c72.tar.gz emacs-6fd1fb8a6837acde8e1c9ab26618ec0f36121c72.tar.bz2 emacs-6fd1fb8a6837acde8e1c9ab26618ec0f36121c72.zip |
Don't disable eldoc when doing edebug
* lisp/emacs-lisp/eldoc.el
(eldoc-display-message-no-interference-p): Don't disable eldoc
when edebugging (bug#56459). There should be no interference in
that case, because edebug messaging is done after stepping, and
eldoc messaging is done after other movements.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/eldoc.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index 8d7f182e0cd..6fd89a690dc 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el @@ -381,7 +381,6 @@ Also store it in `eldoc-last-message' and return that value." (defun eldoc-display-message-no-interference-p () "Return nil if displaying a message would cause interference." (not (or executing-kbd-macro - (bound-and-true-p edebug-active) ;; The following configuration shows "Matches..." in the ;; echo area when point is after a closing bracket, which ;; conflicts with eldoc. |