emacs-devel
[Top][All Lists]
Advanced

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

Re: HowTo: Log a message without displaying it?


From: Adrián Medraño Calvo
Subject: Re: HowTo: Log a message without displaying it?
Date: Tue, 30 Jun 2020 07:24:45 +0200


On 30. Jun 2020, at 01:53, T.V Raman <raman@google.com> wrote:

The elisp docs talk about how to display a message, and how to disable
logging of that message. Is it possible to   do the converse, ie log a
message to *Messages* *without* displaying the message? I suppose I
could directly access that buffer with (messages-buffer) and write to
it -- but is there a builtin/blessed elisp call that does this?

--

--



Does the following help?

(let ((inhibit-message))
  (message "Hellau!"))

Regards,
Adrián.

reply via email to

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