From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Daniel Carvalho Newsgroups: gmane.emacs.help Subject: disable messaging in echo area Date: Wed, 08 Dec 2010 15:35:43 +0000 Message-ID: <4CFFA5CF.7070100@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigB1F7C25F4B522EE3569C5838" X-Trace: dough.gmane.org 1291888156 18455 80.91.229.12 (9 Dec 2010 09:49:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 9 Dec 2010 09:49:16 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Dec 09 10:49:13 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PQd7f-00051R-MR for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Dec 2010 10:49:11 +0100 Original-Received: from localhost ([127.0.0.1]:44909 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PQd7e-0004Ut-AY for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Dec 2010 04:49:10 -0500 Original-Received: from [140.186.70.92] (port=54800 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PQM3j-00082g-VS for help-gnu-emacs@gnu.org; Wed, 08 Dec 2010 10:36:00 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PQM3i-00043J-Mo for help-gnu-emacs@gnu.org; Wed, 08 Dec 2010 10:35:59 -0500 Original-Received: from mail-wy0-f169.google.com ([74.125.82.169]:35117) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PQM3i-000431-GK for help-gnu-emacs@gnu.org; Wed, 08 Dec 2010 10:35:58 -0500 Original-Received: by wyj26 with SMTP id 26so1302360wyj.0 for ; Wed, 08 Dec 2010 07:35:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:x-enigmail-version:content-type; bh=Bz4wc3O4rZGkeneA30I1h0+QPR+EWCOZmkhISx2yXYs=; b=K8Z0Mzfx5UG5AJUvjz7oYjNpe3sqbVbtVvdW/6FrPS6liE45H/QUwAZ7ltONSGVTj7 g5UTmVhKDmro9ADEC/pi28pYe+hO014ZUM0xJYYYfc6lr2vzdqQCHr58FKMS+hh/7DLI nzqrgnuhMHFGvkZ6pMWqmPnIjh5djkT5k+Lc4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :x-enigmail-version:content-type; b=HA62XxtESpDgtUiF5IqBO2HSGe1JWmCMjqgFYd890mU1qYys1LPpT6yyyzf2Mac2kQ aN4wK01+ax1ug1gNaQxn9rVJeEvYmPm3qhn5d+mDV8sFWdTKsWZAiZFpIq1j6rSSAGAZ cv3EGmGxizWjMaAJGoJJU3apvZlbbBiO3i5x0= Original-Received: by 10.227.38.143 with SMTP id b15mr9232842wbe.167.1291822555873; Wed, 08 Dec 2010 07:35:55 -0800 (PST) Original-Received: from [192.168.2.101] (a95-92-76-60.cpe.netcabo.pt [95.92.76.60]) by mx.google.com with ESMTPS id q18sm484213wbe.23.2010.12.08.07.35.53 (version=SSLv3 cipher=RC4-MD5); Wed, 08 Dec 2010 07:35:54 -0800 (PST) User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6 X-Enigmail-Version: 1.1.1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:76933 Archived-At: This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigB1F7C25F4B522EE3569C5838 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 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! --------------enigB1F7C25F4B522EE3569C5838 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJM/6XUAAoJEN0tMfpVjIT7RZgIAK3N23vVsXFznOsjLP9qOlRh 2DdXBNXiNreO5vWf5/GwqcY0MA4HkFh3SVHXh1FVedZuQ3rI/hTiJWCfpoZGmGAa QOkYHIvA0dIt9XMvr8fb5kL4EchGXK7d6lmy/6aWbIOssSqTxY7g6WOhF+iURe0G cg3F90kiW1NKAE0Yh7LigCMSdxRQEpps23dbnHQ4X0kqQ6oIHu3j0Aa9Px1P+bDK SYDKGCmz0dp22G3l22UfNQXKVKSbFHiHiF2Brpp2JHgA/G2p86G27rCWTpNAbhqz YqIMmW46g055FbjPywfA8nNFVVofs9RFwlwcIJDQh2u/J0WTA9aW+YFQOppDgbI= =c7Q4 -----END PGP SIGNATURE----- --------------enigB1F7C25F4B522EE3569C5838--