From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Fabian Braennstroem Newsgroups: gmane.emacs.help Subject: change font for lines starting with an asterisk Date: Fri, 13 Apr 2007 07:57:59 +0000 Organization: FernUni Hagen Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1176446180 9292 80.91.229.12 (13 Apr 2007 06:36:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 13 Apr 2007 06:36:20 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Apr 13 08:36:17 2007 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.50) id 1HcFOJ-0006Bx-C8 for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Apr 2007 08:36:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HcFSX-0001yQ-9q for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Apr 2007 02:40:37 -0400 Original-Path: shelby.stanford.edu!newshub.stanford.edu!newsfeed.gamma.ru!Gamma.RU!newsfeed.freenet.de!newsfeed.r-kom.de!news-nue1.dfn.de!news-koe1.dfn.de!tamarack.fernuni-hagen.de!news.fernuni-hagen.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 45 Original-NNTP-Posting-Host: p54a12320.dip0.t-ipconnect.de Original-X-Trace: tamarack.fernuni-hagen.de 1176443642 2556 84.161.35.32 (13 Apr 2007 05:54:02 GMT) Original-X-Complaints-To: newsadmin@fernuni-hagen.de Original-NNTP-Posting-Date: Fri, 13 Apr 2007 05:54:02 +0000 (UTC) User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.8.0.10) Gecko/20070221 Thunderbird/1.5.0.10 Mnenhy/0.7.5.0 Original-Xref: shelby.stanford.edu gnu.emacs.help:147029 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:42633 Archived-At: Hi, I know the nice font changes in auctex, e.g. for section, and would like to achieve this for certain files too... Right now I can define some keywords (define-generic-mode 'fluent-mode '("#") '("DEBUG") '( ("INFO" . 'font-lock-constant-face) ("DEBUG" . 'font-lock-keyword-face) ("WARN" . 'font-lock-type-face) ("ERROR" . 'paren-face-mismatch) ("WARNING" . 'font-lock-fatal-face)) '(".jou\\'") nil "Major mode for editing fluent journal files") and set the faces: (custom-set-faces '( font-latex-match-title-3-keywords ((t (:height 1.2 :foreground "blue" :inherit (font-latex-title-3-face))))) '(font-lock-builtin-face ((t (:foreground "cyan")))) '(margin-face ((t (:background "magenta")))) '(font-lock-comment-face ((t (:foreground "green")))) '(font-lock-constant-face ((t (:foreground "magenta")))) '(font-lock-function-name-face ((t (:underline t :bold t :foreground "blue" )))) '(font-lock-keyword-face ((t (:foreground "yellow")))) '(font-lock-string-face ((t (:foreground "red")))) '(font-lock-fatal-face ((t (:underline t :bold t :foreground "red" :background "black")))) ; '(font-lock-type-face ((t (:foreground "darkgreen")))) '(font-lock-variable-name-face ((t (:foreground "black")))) I would like to know, how I can change the color and especially the font size of all lines starting with an asterisk? Does anyone have an idea for emacs 21.3.1? Greetings! Fabian