From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: font-backend branch Date: Tue, 06 May 2008 21:53:37 -0400 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 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1210125314 2744 80.91.229.12 (7 May 2008 01:55:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 7 May 2008 01:55:14 +0000 (UTC) Cc: emacs-devel@gnu.org, jasonr@gnu.org To: Kenichi Handa Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 07 03:55:49 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 1JtYsm-0003RZ-Go for ged-emacs-devel@m.gmane.org; Wed, 07 May 2008 03:55:48 +0200 Original-Received: from localhost ([127.0.0.1]:46507 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JtYs4-0001AX-JN for ged-emacs-devel@m.gmane.org; Tue, 06 May 2008 21:55:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JtYqn-0000TC-9Y for emacs-devel@gnu.org; Tue, 06 May 2008 21:53:45 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JtYql-0000T0-Se for emacs-devel@gnu.org; Tue, 06 May 2008 21:53:44 -0400 Original-Received: from [199.232.76.173] (port=45020 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JtYql-0000Sx-L3 for emacs-devel@gnu.org; Tue, 06 May 2008 21:53:43 -0400 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182] helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JtYqg-0001Qb-TM; Tue, 06 May 2008 21:53:39 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ap8EAB+oIEhMCqqd/2dsb2JhbACBU6tZ X-IronPort-AV: E=Sophos;i="4.27,445,1204520400"; d="scan'208";a="20002960" Original-Received: from smtp.pppoe.ca (HELO smtp.teksavvy.com) ([65.39.196.238]) by ironport2-out.teksavvy.com with ESMTP; 06 May 2008 21:53:38 -0400 Original-Received: from pastel.home ([76.10.170.157]) by smtp.teksavvy.com (Internet Mail Server v1.0) with ESMTP id NGI40638; Tue, 06 May 2008 21:53:38 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 01F2A8E5F; Tue, 6 May 2008 21:53:37 -0400 (EDT) In-Reply-To: (Kenichi Handa's message of "Tue, 06 May 2008 20:25:36 +0900") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. 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:96630 Archived-At: > 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 Hmm... that doesn't say why we do it. The crucial info is that we want to return an object that can be passed to x-list-fonts. Stefan