From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Minimal patch: Use link face as default for button face Date: Mon, 26 Jun 2006 07:33:04 -0400 Message-ID: References: <449E44B2.1040004@student.lu.se> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1151321607 29505 80.91.229.2 (26 Jun 2006 11:33:27 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 26 Jun 2006 11:33:27 +0000 (UTC) Cc: lennart.borgman.073@student.lu.se, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 26 13:33:24 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FupLH-0007ls-NA for ged-emacs-devel@m.gmane.org; Mon, 26 Jun 2006 13:33:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FupLH-0007vW-53 for ged-emacs-devel@m.gmane.org; Mon, 26 Jun 2006 07:33:23 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FupL5-0007v5-Rr for emacs-devel@gnu.org; Mon, 26 Jun 2006 07:33:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FupL5-0007ul-Cd for emacs-devel@gnu.org; Mon, 26 Jun 2006 07:33:11 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FupL5-0007ui-84 for emacs-devel@gnu.org; Mon, 26 Jun 2006 07:33:11 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FupWw-0002b9-Oh for emacs-devel@gnu.org; Mon, 26 Jun 2006 07:45:26 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FupKy-0004yH-HF; Mon, 26 Jun 2006 07:33:04 -0400 Original-To: Eli Zaretskii In-reply-to: (message from Eli Zaretskii on Sun, 25 Jun 2006 21:38:11 +0300) 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:56192 Archived-At: > -(defface button '((((type pc) (class color)) > - (:foreground "lightblue")) > - (t :underline t)) > +(defface button > + '((t :inherit link)) > "Default face used for buttons." > :group 'basic-faces) This modifies the face default for (type pc). I don't think it's time to change defaults now. It makes changes on many kinds of platforms, since `link' does a lot more than just underline. Buttons are different from links, so I think this change is probably a mistake on general principles.