branch: externals/mct commit 3799a07257637e8ebba97a5c6b21d0b172f9feee Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Inhibit flooding the *Messages* buffer minibuffer-completion-help always prints "Making completion list...". Inhibit this message completely, such that it does not appear in the *Messages* buffer. --- mct.el | 1 + 1 file changed, 1 insertion(+) diff --git a/mct.el b/mct.el index 03c3ab4150..7e7b38e87c 100644 --- a/mct.el +++ b/mct.el @@ -260,6 +260,7 @@ Meant to be added to `after-change-functions'." (save-excursion (goto-char (point-max)) (let ((inhibit-message t) + (message-log-max nil) ;; don't ring the bell in `minibuffer-completion-help' ;; when <= 1 completion exists. (ring-bell-function #'ignore))