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: Silent autoloading Date: Mon, 17 Nov 2008 09:46:16 -0500 Message-ID: References: <8763mngd3n.fsf@gmx.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1226933255 13170 80.91.229.12 (17 Nov 2008 14:47:35 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 17 Nov 2008 14:47:35 +0000 (UTC) Cc: Andreas Schwab , Eli Zaretskii , emacs-devel@gnu.org, Glenn Morris To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 17 15:48:38 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 1L25P3-00005D-Km for ged-emacs-devel@m.gmane.org; Mon, 17 Nov 2008 15:48:37 +0100 Original-Received: from localhost ([127.0.0.1]:44766 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L25Nv-0002O7-8x for ged-emacs-devel@m.gmane.org; Mon, 17 Nov 2008 09:47:27 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L25MK-0001eS-CC for emacs-devel@gnu.org; Mon, 17 Nov 2008 09:45:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L25MG-0001du-RR for emacs-devel@gnu.org; Mon, 17 Nov 2008 09:45:48 -0500 Original-Received: from [199.232.76.173] (port=42718 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L25MG-0001dr-MJ for emacs-devel@gnu.org; Mon, 17 Nov 2008 09:45:44 -0500 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182]:2013 helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L25ME-0008Oc-Qf; Mon, 17 Nov 2008 09:45:42 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AhIFAEASIUlMCrcy/2dsb2JhbACBbMxjgnmBFA X-IronPort-AV: E=Sophos;i="4.33,618,1220241600"; d="scan'208";a="29955762" Original-Received: from 76-10-183-50.dsl.teksavvy.com (HELO pastel.home) ([76.10.183.50]) by ironport2-out.teksavvy.com with ESMTP; 17 Nov 2008 09:45:40 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id 612927F97; Mon, 17 Nov 2008 09:46:16 -0500 (EST) In-Reply-To: <8763mngd3n.fsf@gmx.de> (Michael Albinus's message of "Mon, 17 Nov 2008 06:01:32 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-operating-system: 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:105746 Archived-At: > Tramp needs to initialize variables. For example, setting > `tramp-default-method' might call `executable-find' or > 'w32-window-exists-p', which consumes time. > I don't know, whether it is worth to perform it via `eval-when-compile', > because the result might be different every single start of Emacs. Doing it at compile time would be wrong, indeed. Tramp's load time is not a bug. Of course, if you can improve it that's good. Stefan