Function: magit-message
magit-message is a byte-compiled function defined in magit-base.el.
Signature
(magit-message FORMAT-STRING &rest ARGS)
Documentation
Display a message at the bottom of the screen, or not.
Like message, except that if the users configured option
magit-no-message to prevent the message corresponding to
FORMAT-STRING to be displayed, then don't.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-base.el
;;; Miscellaneous
(defun magit-message (format-string &rest args)
"Display a message at the bottom of the screen, or not.
Like `message', except that if the users configured option
`magit-no-message' to prevent the message corresponding to
FORMAT-STRING to be displayed, then don't."
(unless (seq-find (##string-prefix-p % format-string) magit-no-message)
(apply #'message format-string args)))