From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Fontification of citations in mail-Mode Date: Wed, 20 Apr 2005 10:57:25 -0400 Message-ID: References: <20050418110346.GD4768@kenny.sha-bang.local> <20050419074527.GA4860@kenny.sha-bang.local> <01c54515$Blat.v2.4$9123cf00@zahav.net.il> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1114008949 10833 80.91.229.2 (20 Apr 2005 14:55:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 20 Apr 2005 14:55:49 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Apr 20 16:55:48 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DOGb4-0002ja-P9 for ged-emacs-devel@m.gmane.org; Wed, 20 Apr 2005 16:54:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DOGfb-0000Cp-F0 for ged-emacs-devel@m.gmane.org; Wed, 20 Apr 2005 10:59:15 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DOGf8-0008WV-NR for emacs-devel@gnu.org; Wed, 20 Apr 2005 10:58:46 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DOGf8-0008WD-5J for emacs-devel@gnu.org; Wed, 20 Apr 2005 10:58:46 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DOGf8-0008JJ-05 for emacs-devel@gnu.org; Wed, 20 Apr 2005 10:58:46 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DOGgL-0000rK-IS for emacs-devel@gnu.org; Wed, 20 Apr 2005 11:00:01 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DOGdp-0004Zl-Pq; Wed, 20 Apr 2005 10:57:25 -0400 Original-To: Eli Zaretskii In-reply-to: <01c54515$Blat.v2.4$9123cf00@zahav.net.il> (eliz@gnu.org) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:36163 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:36163 IMHO, the reason is, if nothing else, that this is how Mail mode behaved on a tty since v21.1, and users did not complain too loudly (or we would have changed that). Maybe hardly anyone used font lock on Rmail buffers in text consoles. I don't know how to try changing this, because I can't even tell which clause in the defface is used. How would I find that out? (defface font-lock-comment-face '((((class grayscale) (background light)) (:foreground "DimGray" :weight bold :slant italic)) (((class grayscale) (background dark)) (:foreground "LightGray" :weight bold :slant italic)) (((class color) (min-colors 88) (background light)) (:foreground "Firebrick")) (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1")) (((class color) (min-colors 16) (background light)) (:foreground "red")) (((class color) (min-colors 16) (background dark)) (:foreground "red1")) (((class color) (min-colors 8) (background light)) (:foreground "red")) (((class color) (min-colors 8) (background dark)) (:foreground "red1")) (t (:weight bold :slant italic)))