Variable: inhibit-message-regexps
inhibit-message-regexps is a customizable variable defined in
minibuffer.el.gz.
Value
nil
Documentation
List of regexps that inhibit messages by the function inhibit-message(var)/inhibit-message(fun).
When the list in set-message-functions(var)/set-message-functions(fun) has inhibit-message(var)/inhibit-message(fun) as its
first element, echo-area messages which match the value of this variable
will not be displayed.
This variable was added, or its default value changed, in Emacs 29.1.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defcustom inhibit-message-regexps nil
"List of regexps that inhibit messages by the function `inhibit-message'.
When the list in `set-message-functions' has `inhibit-message' as its
first element, echo-area messages which match the value of this variable
will not be displayed."
:type '(repeat regexp)
:version "29.1")