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

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

disable messaging in echo area


From: Daniel Carvalho
Subject: disable messaging in echo area
Date: Wed, 08 Dec 2010 15:35:43 +0000
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6

hi
I have a function that runs in background every 10 seconds (with
run-at-time). That function saves a file, and this causes a message to
be displayed in the echo-area. I want to disable this message...


there was already a thread about that :
http://lists.gnu.org/archive/html/help-gnu-emacs/2009-08/msg00374.html


But the pointed solutions don't work

(flet ((message (&rest args) nil))
   (message "test")
   (write-file file)
   )
- the "test" message is not displayed, but the "write file" is still
displayed!


(let (message-log-max)
  (write-file file)
  )
- no effect!


Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

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