From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Reto Zimmermann Newsgroups: gmane.emacs.devel Subject: Re: vera-mode.el Date: Thu, 07 Jun 2007 14:07:57 +0200 Message-ID: <4667F51D.5060707@synopsys.com> References: <4665C2DC.3090102@synopsys.com> <4666EB5D.7040909@gnu.org> <46672780.30202@synopsys.com> <200706062338.l56NcSrt009870@oogie-boogie.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1181218096 21568 80.91.229.12 (7 Jun 2007 12:08:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 7 Jun 2007 12:08:16 +0000 (UTC) Cc: emacs-devel@gnu.org, Stefan Monnier , Reto Zimmermann To: Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 07 14:08:14 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HwGmj-0007gb-NR for ged-emacs-devel@m.gmane.org; Thu, 07 Jun 2007 14:08:13 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HwGmj-000786-1Q for ged-emacs-devel@m.gmane.org; Thu, 07 Jun 2007 08:08:13 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HwGme-00077i-Sr for emacs-devel@gnu.org; Thu, 07 Jun 2007 08:08:08 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HwGmb-00075L-Mx for emacs-devel@gnu.org; Thu, 07 Jun 2007 08:08:08 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HwGmb-00075I-8L for emacs-devel@gnu.org; Thu, 07 Jun 2007 08:08:05 -0400 Original-Received: from us01smtp1.synopsys.com ([198.182.44.79] helo=boden.synopsys.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HwGma-0002pV-Ov for emacs-devel@gnu.org; Thu, 07 Jun 2007 08:08:05 -0400 Original-Received: from mother.synopsys.com (mother.synopsys.com [146.225.100.171]) by boden.synopsys.com (Postfix) with ESMTP id D61A5DEBD; Thu, 7 Jun 2007 05:08:02 -0700 (PDT) Original-Received: from [127.0.0.1] (localhost [127.0.0.1]) by mother.synopsys.com (8.9.1/8.9.1) with ESMTP id FAA05698; Thu, 7 Jun 2007 05:08:01 -0700 (PDT) User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) X-Accept-Language: en-us, en, de-ch In-Reply-To: <200706062338.l56NcSrt009870@oogie-boogie.ics.uci.edu> X-detected-kernel: Solaris 8 (1) 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:72408 Archived-At: Dan Nicolaescu wrote: > Thanks for submitting this code! > > Reto Zimmermann writes: > > > > (defface vera-font-lock-number-face > > Faces don't have "-face" suffix anymore now, some face names have been > kept for compatibility, but it would be good not to introduce new > ones. > > > (defface vera-font-lock-function-face > > Any reason you are not using font-lock-function-name-face here? > > font-lock is on by default in emacs-22, so there's a set of 15 > predefined faces that you could use. > > Can you use the predefined font-lock faces for any of the faces that > vera-mode uses? I added these faces because I wanted even more colors do distinguish different language elements and I didn't find appropriate colors in the predefined faces. I am already using font-lock-function-name-face for something else. So I would like to keep these additional colors because it was a user wish. Reto