help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: messages to *Messages* without appearing in mini-buffer?


From: Gregory Heytings
Subject: Re: messages to *Messages* without appearing in mini-buffer?
Date: Thu, 11 Nov 2021 14:45:52 +0000



what is the easiest way to output text to the *Messages* buffer, in elisp, without having it appear in the echo (mini-buffer) area?


(defun message-quiet (format-string &rest args)
  "Like `message', but do not display the message at the bottom of the screen."
  (let ((set-message-function #'always))
    (apply #'message format-string args)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]