From 6fd1fb8a6837acde8e1c9ab26618ec0f36121c72 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Tue, 2 Aug 2022 11:56:55 +0200 Subject: [PATCH] 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. --- lisp/emacs-lisp/eldoc.el | 1 - 1 file changed, 1 deletion(-) 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. -- 2.39.5