From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Miles Bader Newsgroups: gmane.emacs.devel Subject: Re: kill ring menu Date: 29 Apr 2002 12:35:04 +0900 Sender: emacs-devel-admin@gnu.org Message-ID: <87k7qr18k7.fsf@tc-1-100.kawasaki.gol.ne.jp> References: <1020022891.27106.142.camel@space-ghost> Reply-To: Miles Bader NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1020051457 3342 127.0.0.1 (29 Apr 2002 03:37:37 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 29 Apr 2002 03:37:37 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 1721yr-0000rn-00 for ; Mon, 29 Apr 2002 05:37:37 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17222Q-0001UX-00 for ; Mon, 29 Apr 2002 05:41:19 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 1721xc-0008N1-00; Sun, 28 Apr 2002 23:36:20 -0400 Original-Received: from smtp01.fields.gol.com ([203.216.5.131]) by fencepost.gnu.org with smtp (Exim 3.34 #1 (Debian)) id 1721wY-0008Ji-00; Sun, 28 Apr 2002 23:35:15 -0400 Original-Received: from tc-2-164.kawasaki.gol.ne.jp ([203.216.25.164] helo=tc-1-100.kawasaki.gol.ne.jp) by smtp01.fields.gol.com with esmtp (Magnetic Fields) id 1721wQ-0002yR-00; Mon, 29 Apr 2002 12:35:07 +0900 Original-Received: by tc-1-100.kawasaki.gol.ne.jp (Postfix, from userid 1000) id 71F2E304F; Mon, 29 Apr 2002 12:35:04 +0900 (JST) Original-To: Colin Walters System-Type: i686-pc-linux-gnu In-Reply-To: <1020022891.27106.142.camel@space-ghost> Original-Lines: 21 X-Abuse-Complaints: abuse@gol.com Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:3371 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:3371 Also another comment: +(defcustom kill-ring-menu-separator-face 'bold + "The face in which to highlight the `kill-ring-menu-separator'." It's the general custom now-days to not define variables holding faces, but instead simply make a specialized face if you need it, and use the :inherit attribute if you want to use a builtin face by default. This is more convenient and less confusing for users. E.g. instead of above, use: (defface kill-ring-menu-separator '((t :inherit bold)) "The face in which to highlight the `kill-ring-menu-separator'." :group 'killing) [or just use `:weight bold' instead of :inherit] -Miles -- I have seen the enemy, and he is us. -- Pogo