From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.bugs Subject: Re: assuming light or dark background Date: Fri, 08 Feb 2008 02:53:01 +0000 Message-ID: <47ABC40D.4030302@gnu.org> References: <87sl048h5t.fsf@jidanni.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1202439205 15514 80.91.229.12 (8 Feb 2008 02:53:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 8 Feb 2008 02:53:25 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org, fx@gnu.org To: jidanni@jidanni.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Fri Feb 08 03:53:47 2008 Return-path: Envelope-to: geb-bug-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 1JNJN5-00019j-9e for geb-bug-gnu-emacs@m.gmane.org; Fri, 08 Feb 2008 03:53:47 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JNJMc-0006ji-O1 for geb-bug-gnu-emacs@m.gmane.org; Thu, 07 Feb 2008 21:53:18 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JNJMX-0006h9-MV for bug-gnu-emacs@gnu.org; Thu, 07 Feb 2008 21:53:13 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JNJMW-0006fA-3G for bug-gnu-emacs@gnu.org; Thu, 07 Feb 2008 21:53:13 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JNJMV-0006f7-Tr for bug-gnu-emacs@gnu.org; Thu, 07 Feb 2008 21:53:11 -0500 Original-Received: from mk-outboundfilter-3.mail.uk.tiscali.com ([212.74.114.23]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JNJMS-0007cz-5k; Thu, 07 Feb 2008 21:53:08 -0500 Original-X-Trace: 36352241/mk-outboundfilter-1.mail.uk.tiscali.com/F2S/$ACCEPTED/freedom2Surf-customers/83.67.23.108 X-SBRS: None X-RemoteIP: 83.67.23.108 X-IP-MAIL-FROM: jasonr@gnu.org X-IP-BHB: Once X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAANxSq0dTQxds/2dsb2JhbAAIrC4 X-IP-Direction: OUT Original-Received: from i-83-67-23-108.freedom2surf.net (HELO [127.0.0.1]) ([83.67.23.108]) by smtp.f2s.tiscali.co.uk with ESMTP/TLS/DHE-RSA-AES256-SHA; 08 Feb 2008 02:53:06 +0000 User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) In-Reply-To: <87sl048h5t.fsf@jidanni.org> X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:17499 Archived-At: jidanni@jidanni.org wrote: > RFCs are unreadable now for me. Must be due to > > (defface rfcview-headlink-face > '((t (:foreground "blue")) > (t (:bold t))) > "Face used for hyperlinks to headings." > :group 'rfcview) > This doesn't appear to be part of Emacs. Probably a better way of defining that face is (defface rfcview-headlink-face '((t (:inherit 'link))) "Face used for hyperlinks to headngs." :group 'rfcview) That way it will take advantage of any variations that already exist for the built-in link face, such as light, dark, grayscale, or user customizations.