From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: make the button face inherit from link Date: Mon, 22 Jun 2009 21:33:13 -0700 (PDT) Message-ID: <200906230433.n5N4XDB1017408@godzilla.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1245732674 3867 80.91.229.12 (23 Jun 2009 04:51:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 23 Jun 2009 04:51:14 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jun 23 06:51:07 2009 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 1MIxyL-0005uY-Q8 for ged-emacs-devel@m.gmane.org; Tue, 23 Jun 2009 06:51:06 +0200 Original-Received: from localhost ([127.0.0.1]:38256 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MIxyK-00070j-Uh for ged-emacs-devel@m.gmane.org; Tue, 23 Jun 2009 00:51:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MIxii-000186-Hq for emacs-devel@gnu.org; Tue, 23 Jun 2009 00:34:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MIxid-00015Q-Ha for emacs-devel@gnu.org; Tue, 23 Jun 2009 00:34:55 -0400 Original-Received: from [199.232.76.173] (port=49958 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MIxid-00015K-DO for emacs-devel@gnu.org; Tue, 23 Jun 2009 00:34:51 -0400 Original-Received: from barrelv2.ics.uci.edu ([128.195.1.114]:49139) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA1:24) (Exim 4.60) (envelope-from ) id 1MIxic-0003o2-Px for emacs-devel@gnu.org; Tue, 23 Jun 2009 00:34:51 -0400 Original-Received: from godzilla.ics.uci.edu (godzilla.ics.uci.edu [128.195.10.101]) by barrelv2.ics.uci.edu (8.13.8+Sun/8.13.8) with ESMTP id n5N4XD84018799 for ; Mon, 22 Jun 2009 21:33:13 -0700 (PDT) Original-Received: (from dann@localhost) by godzilla.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id n5N4XDB1017408; Mon, 22 Jun 2009 21:33:13 -0700 (PDT) Original-Lines: 22 X-ICS-MailScanner-Information: Please contact the ISP for more information X-ICS-MailScanner-ID: n5N4XD84018799 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.03, required 5, autolearn=disabled, ALL_TRUSTED -1.44, SUBJECT_FUZZY_TION 0.41) X-ICS-MailScanner-From: dann@godzilla.ics.uci.edu X-detected-operating-system: by monty-python.gnu.org: Solaris 10 (beta) 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:111650 Archived-At: Last time this was discussed was during the feature freeze. Any objection to making this change now? --- lisp/button.el 5 Jan 2009 03:18:46 -0000 1.38 +++ lisp/button.el 21 Jun 2009 00:59:59 -0000 @@ -49,13 +49,7 @@ ;; Globals -;; Use color for the MS-DOS port because it doesn't support underline. -;; FIXME if MS-DOS correctly answers the (supports) question, it need -;; no longer be a special case. -(defface button '((((type pc) (class color)) - (:foreground "lightblue")) - (((supports :underline t)) :underline t) - (t (:foreground "lightblue"))) +(defface button '((t (:inherit link))) "Default face used for buttons." :group 'basic-faces)