From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jambunathan K Newsgroups: gmane.emacs.devel Subject: Re: More noticeable version of (message) Date: Wed, 02 Nov 2011 11:50:31 +0530 Message-ID: <81zkgfyrio.fsf@gmail.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1320214864 26197 80.91.229.12 (2 Nov 2011 06:21:04 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 2 Nov 2011 06:21:04 +0000 (UTC) Cc: emacs-devel@gnu.org To: Craig Muth Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Nov 02 07:20:59 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RLUC2-0004i4-Uh for ged-emacs-devel@m.gmane.org; Wed, 02 Nov 2011 07:20:59 +0100 Original-Received: from localhost ([::1]:41290 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLUC2-0004Fa-FA for ged-emacs-devel@m.gmane.org; Wed, 02 Nov 2011 02:20:58 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:39091) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLUBz-0004FQ-To for emacs-devel@gnu.org; Wed, 02 Nov 2011 02:20:56 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RLUBy-0004Kp-9U for emacs-devel@gnu.org; Wed, 02 Nov 2011 02:20:55 -0400 Original-Received: from mail-pz0-f47.google.com ([209.85.210.47]:43111) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLUBy-0004Kj-1l for emacs-devel@gnu.org; Wed, 02 Nov 2011 02:20:54 -0400 Original-Received: by pzk6 with SMTP id 6so2259515pzk.6 for ; Tue, 01 Nov 2011 23:20:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:references:mail-followup-to:date:in-reply-to :message-id:user-agent:mime-version:content-type :content-transfer-encoding; bh=V1/Cj1HxqYSDdI5J09o+aStkC3alFq+P2QtcSIghiTQ=; b=DRGGBnYX56CqWv22eZX/RQ8I9TSxk4IA01d4bfmFtVPwkja/u+qMaw3UujGQIANJV4 ZJPRXKRVKRTc28uLvyvySUFR5jYhfMG3QeGYszIV4T6ouITCk6ZxPJN6bV6FxBwuyOYM lVGbZwMgxdQ1Ij2ybhgin37dkLvOY1koozB+o= Original-Received: by 10.68.12.104 with SMTP id x8mr2973925pbb.79.1320214852838; Tue, 01 Nov 2011 23:20:52 -0700 (PDT) Original-Received: from JAMBU-NETBOOK ([115.184.55.221]) by mx.google.com with ESMTPS id 4sm2263869pbj.18.2011.11.01.23.20.47 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 01 Nov 2011 23:20:50 -0700 (PDT) Mail-Followup-To: Craig Muth , emacs-devel@gnu.org In-Reply-To: (Craig Muth's message of "Tue, 1 Nov 2011 14:40:44 -0700") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.91 (windows-nt) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.210.47 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:145832 Archived-At: Craig Muth writes: > I often don't notice the output of lines like=C2=A0(message "hi"), > especially when in full-screen mode. > > Any ideas? =C2=A0Not a huge fan of beeping because I associate that with > an error. =C2=A0I'm on a mac so any face/font stuff is fair game. Try this: (fset 'message-plain (symbol-function 'message)) (defun message-colored (fmt-string &rest args) (message-plain=20 (propertize (apply 'format fmt-string args) 'face 'font-lock-comment-face))) (fset 'message 'message-colored) You will see that the messages appear in comment face. > --Craig > > > --=20