From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Emacs pretest 22.1.91 Date: Tue, 26 Feb 2008 21:50:27 +0200 Message-ID: References: <87ejb8vl0i.fsf@stupidchicken.com> <47C17D74.9050204@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1204055528 32439 80.91.229.12 (26 Feb 2008 19:52:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 26 Feb 2008 19:52:08 +0000 (UTC) Cc: matsuan@ca2.so-net.ne.jp, jasonr@gnu.org, emacs-devel@gnu.org To: "Juanma Barranquero" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 26 20:52:33 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 1JU5qe-0001AE-TL for ged-emacs-devel@m.gmane.org; Tue, 26 Feb 2008 20:52:21 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JU5q9-0005hk-9m for ged-emacs-devel@m.gmane.org; Tue, 26 Feb 2008 14:51:49 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JU5q2-0005fP-GW for emacs-devel@gnu.org; Tue, 26 Feb 2008 14:51:42 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JU5pz-0005eT-6v for emacs-devel@gnu.org; Tue, 26 Feb 2008 14:51:42 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JU5py-0005eP-Rf for emacs-devel@gnu.org; Tue, 26 Feb 2008 14:51:38 -0500 Original-Received: from heller.inter.net.il ([213.8.233.23]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JU5pu-0007J6-Cu; Tue, 26 Feb 2008 14:51:34 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-83-130-243-64.inter.net.il [83.130.243.64]) by heller.inter.net.il (MOS 3.7.3a-GA) with ESMTP id FCL05215 (AUTH halo1); Tue, 26 Feb 2008 21:50:23 +0200 (IST) In-reply-to: (lekktu@gmail.com) X-detected-kernel: by monty-python.gnu.org: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) 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:90526 Archived-At: > Date: Tue, 26 Feb 2008 10:36:51 +0100 > From: "Juanma Barranquero" > Cc: matsuan@ca2.so-net.ne.jp, emacs-devel@gnu.org, jasonr@gnu.org > > On the trunk: > > "init-image-library" (0x82f024) > "image-type-available-p" (0x82f154) > "find-image" (0x82f294) > "tool-bar-local-item-from-menu" (0x82f478) > "apply" (0x82f474) > "tool-bar-add-item-from-menu" (0x82f5b4) > "tool-bar-setup" (0x82f6f4) > "x-create-frame-with-faces" (0x82f824) > "make-frame" (0x82f964) > "frame-initialize" (0x82faa4) > "command-line" (0x82fbe4) > "normal-top-level" (0x82fcb0) > > On EMACS_22_BASE: > > "init-image-library" (0x178ac79) > "image-type-available-p" (0x178ac79) > "use-fancy-splash-screens-p" (0x11eede3) > "display-startup-screen" (0x1753801) > "command-line-1" (0x1753801) > "command-line" (0x1a1ec03) > "normal-top-level" (0x1753801) Which explains the difference: on the 22.x branch, init-image-library is called from command-line-1, which is _after_ site-init file and .emacs; while on the trunk, it is called from frame-initialize, which is _before_ these two. Next question: why does frame-initialize call init-image-library in Emacs 23, but not in 22?