From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: Re: font-backend branch Date: Tue, 06 May 2008 20:25:36 +0900 Message-ID: References: <48190539.4010508@gnu.org> <481AFB40.1050205@gnu.org> <481B16BE.7010608@gnu.org> <481DCC48.4040700@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1210073180 25388 80.91.229.12 (6 May 2008 11:26:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 6 May 2008 11:26:20 +0000 (UTC) Cc: emacs-devel@gnu.org, jasonr@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue May 06 13:26:55 2008 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 1JtLJj-0003Jw-36 for ged-emacs-devel@m.gmane.org; Tue, 06 May 2008 13:26:43 +0200 Original-Received: from localhost ([127.0.0.1]:41160 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JtLJ1-0000Nz-8j for ged-emacs-devel@m.gmane.org; Tue, 06 May 2008 07:25:59 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JtLIw-0000Nk-Rf for emacs-devel@gnu.org; Tue, 06 May 2008 07:25:54 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JtLIu-0000NU-Ec for emacs-devel@gnu.org; Tue, 06 May 2008 07:25:53 -0400 Original-Received: from [199.232.76.173] (port=51673 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JtLIu-0000NR-A2 for emacs-devel@gnu.org; Tue, 06 May 2008 07:25:52 -0400 Original-Received: from mx1.aist.go.jp ([150.29.246.133]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JtLIp-0001vh-Uz; Tue, 06 May 2008 07:25:48 -0400 Original-Received: from rqsmtp2.aist.go.jp (rqsmtp2.aist.go.jp [150.29.254.123]) by mx1.aist.go.jp with ESMTP id m46BPdGp028158; Tue, 6 May 2008 20:25:39 +0900 (JST) env-from (handa@m17n.org) Original-Received: from smtp2.aist.go.jp by rqsmtp2.aist.go.jp with ESMTP id m46BPdrP004264; Tue, 6 May 2008 20:25:39 +0900 (JST) env-from (handa@m17n.org) Original-Received: by smtp2.aist.go.jp with ESMTP id m46BPaYX006644; Tue, 6 May 2008 20:25:36 +0900 (JST) env-from (handa@m17n.org) Original-Received: from handa by etlken.m17n.org with local (Exim 4.69) (envelope-from ) id 1JtLIe-0003Cr-Ls; Tue, 06 May 2008 20:25:36 +0900 In-reply-to: (message from Stefan Monnier on Sun, 04 May 2008 20:58:16 -0400) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/23.0.60 (i686-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) X-detected-kernel: by monty-python.gnu.org: Solaris 8 (1) 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:96582 Archived-At: In article , Stefan Monnier writes: > > OK, I understand now, it is a temporary measure to avoid inconveniencing > > users while this work is ongoing. I'll change the w32 font code for > > now then. > Please make sure there's a comment explaining the reason behind > the code. For that, I've just committed this change. --- Kenichi Handa handa@ni.aist.go.jp *** frame.c.~1.370.2.1.~ 2008-04-30 10:45:03.000000000 +0900 --- frame.c 2008-05-06 20:23:46.000000000 +0900 *************** *** 3371,3376 **** --- 3371,3379 ---- else if (FONT_OBJECT_P (arg)) { font_object = arg; + /* This is store the XLFD font name in the frame parameter for + backward compatiblity. We should store the font-object + itself in the future. */ arg = AREF (font_object, FONT_NAME_INDEX); } else