Function: magit-msg
magit-msg is a byte-compiled function defined in magit-base.el.
Signature
(magit-msg FORMAT-STRING &rest ARGS)
Documentation
Display a message at the bottom of the screen, but don't log it.
Like message, except that message-log-max is bound to nil.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-base.el
(defun magit-msg (format-string &rest args)
"Display a message at the bottom of the screen, but don't log it.
Like `message', except that `message-log-max' is bound to nil."
(let ((message-log-max nil))
(apply #'message format-string args)))