From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Astrid Kuhr Newsgroups: gmane.emacs.help Subject: Re: How to color full line in dired Date: Sun, 24 Nov 2002 12:51:00 +0100 Organization: Comp.Center (RUS), U of Stuttgart, FRG Sender: help-gnu-emacs-admin@gnu.org Message-ID: <3DE0BD24.D100C66@ica1.uni-stuttgart.de> References: <84d6owasm5.fsf@lucy.cs.uni-dortmund.de> Reply-To: a.kuhr@fz-juelich.de NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1038138947 32573 80.91.224.249 (24 Nov 2002 11:55:47 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 24 Nov 2002 11:55:47 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18FvMY-0008TF-00 for ; Sun, 24 Nov 2002 12:55:46 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 18FvN8-0006jX-00; Sun, 24 Nov 2002 06:56:22 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.arcor-online.net!news.belwue.de!news.uni-stuttgart.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 27 Original-NNTP-Posting-Host: lynx.ica1.uni-stuttgart.de Original-X-Trace: news.uni-stuttgart.de 1038138660 13290 129.69.120.32 (24 Nov 2002 11:51:00 GMT) Original-X-Complaints-To: news@news.uni-stuttgart.de Original-NNTP-Posting-Date: Sun, 24 Nov 2002 11:51:00 +0000 (UTC) X-Mailer: Mozilla 4.77 [en] (X11; U; OSF1 V5.0 alpha) X-Accept-Language: en Original-Xref: shelby.stanford.edu gnu.emacs.help:107357 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:3912 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:3912 Hello! Thank you for the information. > > (defface font-lock-dired-link-face > '((t (:foreground "Firebrick" :bold t))) > "Face used for symlinks in dired.") I tried this: (defface ak-dir-face '((t (:foreground "Firebrick" :bold t))) "Face used for directories in dired.") (let*() (setq dired-font-lock-keywords (list '("^..d.* \\([^ ]+\\)$" . ak-dir-face)) ) ) But then I get the errormessage: Symbols value as variable is void: ak-dir-face. Must I add something else? Regards, Astrid