From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Emacs pretest 22.1.91 Date: Mon, 25 Feb 2008 12:42:36 +0100 Message-ID: References: <87ejb8vl0i.fsf@stupidchicken.com> <47C17D74.9050204@gnu.org> <47C2A65F.3090707@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1203939786 22103 80.91.229.12 (25 Feb 2008 11:43:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 25 Feb 2008 11:43:06 +0000 (UTC) Cc: Emacs Devel To: "Jason Rumney" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 25 12:43:29 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 1JTbjx-0002eJ-WC for ged-emacs-devel@m.gmane.org; Mon, 25 Feb 2008 12:43:26 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JTbjS-0001zJ-1z for ged-emacs-devel@m.gmane.org; Mon, 25 Feb 2008 06:42:54 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JTbjH-0001vE-1k for emacs-devel@gnu.org; Mon, 25 Feb 2008 06:42:43 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JTbjF-0001uC-7D for emacs-devel@gnu.org; Mon, 25 Feb 2008 06:42:42 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JTbjF-0001u9-4V for emacs-devel@gnu.org; Mon, 25 Feb 2008 06:42:41 -0500 Original-Received: from wr-out-0506.google.com ([64.233.184.236]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JTbjE-0002AY-Pf for emacs-devel@gnu.org; Mon, 25 Feb 2008 06:42:41 -0500 Original-Received: by wr-out-0506.google.com with SMTP id 50so530295wri.10 for ; Mon, 25 Feb 2008 03:42:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=p++ZPqugIG9gOvma1dRxjY/GiCrh7glqRKTyMxw481s=; b=Mk3mvEQbh6QCjznJSGfUfBxUgSTll1mQE69MlbB3SxYFsaUS3mbendk8SBC+OfIbA93+RN0tpUlOmesTk+n/Y4taxat+8OOgrQemHEwelv6ROw4FWlwUb+OdCXrBYsi/LvfYulbl7t0BtnOrD4VfjD9dtNIGNDisvRuHJgaxetM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=aXjtu1BwcPmRcl1pKjHAYMv7k+r7VG68N5IFOOvNPddYsdRRjB92PcaC4E4zpYtmq7v+A/ml3Rtg3ZRFAFwswHq9c1lNSMY/u1yPA2BsLvuQNShu8Ppyn9BjwMyXIXmlii7yb69MRRSzvlxOiaDo24Fj3eMbOKgu4vVrywgR/98= Original-Received: by 10.115.88.1 with SMTP id q1mr3380497wal.64.1203939756839; Mon, 25 Feb 2008 03:42:36 -0800 (PST) Original-Received: by 10.115.72.13 with HTTP; Mon, 25 Feb 2008 03:42:36 -0800 (PST) In-Reply-To: <47C2A65F.3090707@gnu.org> Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 (Google crawlbot) 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:90390 Archived-At: On Mon, Feb 25, 2008 at 12:28 PM, Jason Rumney wrote: > I think the most likely source of the change in behaviour is the > multi-tty change to require term/*-win.el to be preloaded and related > changes to startup order. Even if term/*-win.el are preloaded, Emacs (on Windows) doesn't get "married" with a specific imagelib DLL until it is first needed. Modifying the PNG entry for `image-library-alist' in .emacs works, for example. So the issue is that "(image-type-available-p 'xpm)" is being called now sooner that it was before. Juanma