From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "B. Anyos" Newsgroups: gmane.emacs.devel Subject: :overline face attribute fix Date: Mon, 23 Aug 2004 13:45:17 +0200 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <4129D8CD.6000107@freemail.hu> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------000106030401010208050904" X-Trace: sea.gmane.org 1093261860 9308 80.91.224.253 (23 Aug 2004 11:51:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 23 Aug 2004 11:51:00 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 23 13:50:51 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BzDLf-0001gs-00 for ; Mon, 23 Aug 2004 13:50:51 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BzDQ7-0000Rl-Cf for ged-emacs-devel@m.gmane.org; Mon, 23 Aug 2004 07:55:27 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BzDOi-0007q2-CK for emacs-devel@gnu.org; Mon, 23 Aug 2004 07:54:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BzDOg-0007pK-9O for emacs-devel@gnu.org; Mon, 23 Aug 2004 07:53:59 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BzDOg-0007pA-3d for emacs-devel@gnu.org; Mon, 23 Aug 2004 07:53:58 -0400 Original-Received: from [81.0.70.197] (helo=evo2.evosoft.hu) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1BzDJu-0000oY-IO for emacs-devel@gnu.org; Mon, 23 Aug 2004 07:49:03 -0400 Original-Received: from evosoft.hu (griff.evosoft.hu [172.16.110.26]) by evo2.evosoft.hu (8.12.9p2/8.12.9) with ESMTP id i7NBhru3048502 for ; Mon, 23 Aug 2004 13:43:54 +0200 (CEST) (envelope-from banyos@freemail.hu) Original-Received: from [172.16.111.121] (banyos2.evosoft.hu [172.16.111.121]) by evosoft.hu (8.12.3/8.12.3) with ESMTP id i7NBgW6A042959 for ; Mon, 23 Aug 2004 13:42:32 +0200 (CEST) (envelope-from banyos@freemail.hu) User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en Original-To: emacs-devel@gnu.org X-evosoft-evo2-MailScanner-Information: Please contact the ISP for more information X-evosoft-evo2-MailScanner: Found to be clean 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:26424 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:26424 This is a multi-part message in MIME format. --------------000106030401010208050904 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi, There's been a long existing problem on Win32 with :overline face attribute. Namely it didn't appear due to a bug/type in w32term.c Here the patch. Please incorporate into the CVS as I'm not a member. Regards, Bela --------------- cut here ---------------- --- w32term.c Fri Aug 20 12:34:12 2004 +++ w32term.c.new Mon Aug 23 08:51:08 2004 @@ -2506,7 +2506,7 @@ } else { - w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x, + w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x, s->y + dy, s->width, h); } } --------------- cut here ---------------- --------------000106030401010208050904 Content-Type: text/plain; name="w32term.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="w32term.patch" --- w32term.c Fri Aug 20 12:34:12 2004 +++ w32term.c.new Mon Aug 23 08:51:08 2004 @@ -2506,7 +2506,7 @@ } else { - w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x, + w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x, s->y + dy, s->width, h); } } --------------000106030401010208050904 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel --------------000106030401010208050904--