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: display-supports-face-attributes-p bug? Date: Fri, 10 Jun 2005 18:36:32 -0400 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1118443773 13562 80.91.229.2 (10 Jun 2005 22:49:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 10 Jun 2005 22:49:33 +0000 (UTC) Cc: eliz@gnu.org, cloos@jhcloos.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 11 00:49:33 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DgsJQ-0006Rq-2v for ged-emacs-devel@m.gmane.org; Sat, 11 Jun 2005 00:49:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DgsNg-0006Jb-Lr for ged-emacs-devel@m.gmane.org; Fri, 10 Jun 2005 18:53:40 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DgsK7-0004sF-0g for emacs-devel@gnu.org; Fri, 10 Jun 2005 18:49:59 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DgsJz-0004m5-NV for emacs-devel@gnu.org; Fri, 10 Jun 2005 18:49:53 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DgsJx-0004ft-4j for emacs-devel@gnu.org; Fri, 10 Jun 2005 18:49:49 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Dgs7o-0003Pb-SW for emacs-devel@gnu.org; Fri, 10 Jun 2005 18:37:16 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1Dgs76-0003IF-Nx; Fri, 10 Jun 2005 18:36:32 -0400 Original-To: snogglethorpe@gmail.com, miles@gnu.org In-reply-to: (message from Miles Bader on Fri, 10 Jun 2005 11:20:37 +0900) 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:38544 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:38544 I installed a feature to make it possible for term/*.el to say that the terminal does not really support underlining. It is not elegant but it should do the job. I also changed the underline face as follows: (defface underline '((((supports :underline t)) :underline t) (((supports :weight bold)) :weight bold) (t :underline t)) "Basic underlined face." :group 'basic-faces) I think this is the right way for such faces to work. It seems to work, but I have not installed it yet.