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: gensym - a schizofrenic case? Date: Tue, 30 Dec 2008 14:57:47 -0500 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1230667091 1782 80.91.229.12 (30 Dec 2008 19:58:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 30 Dec 2008 19:58:11 +0000 (UTC) Cc: Emacs Devel To: "Lennart Borgman" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 30 20:59:18 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 1LHkkE-0001XA-K0 for ged-emacs-devel@m.gmane.org; Tue, 30 Dec 2008 20:59:14 +0100 Original-Received: from localhost ([127.0.0.1]:32770 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LHkiy-0003sD-2N for ged-emacs-devel@m.gmane.org; Tue, 30 Dec 2008 14:57:56 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LHkir-0003s7-Tv for emacs-devel@gnu.org; Tue, 30 Dec 2008 14:57:49 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LHkiq-0003rv-Iu for emacs-devel@gnu.org; Tue, 30 Dec 2008 14:57:48 -0500 Original-Received: from [199.232.76.173] (port=44969 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LHkiq-0003rs-Cz for emacs-devel@gnu.org; Tue, 30 Dec 2008 14:57:48 -0500 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182]:21974 helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LHkiq-0002Mx-2W for emacs-devel@gnu.org; Tue, 30 Dec 2008 14:57:48 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AqYEAMELWklLd+aG/2dsb2JhbACBbMwjhkSBZw X-IronPort-AV: E=Sophos;i="4.36,304,1228107600"; d="scan'208";a="31618574" Original-Received: from 75-119-230-134.dsl.teksavvy.com (HELO pastel.home) ([75.119.230.134]) by ironport2-out.teksavvy.com with ESMTP; 30 Dec 2008 14:57:47 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id 5A8F38CF4; Tue, 30 Dec 2008 14:57:47 -0500 (EST) In-Reply-To: (Lennart Borgman's message of "Sun, 28 Dec 2008 06:32:03 +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:107418 Archived-At: >> From byte-compiling I get > ert2.el:133:21:Warning: Function `gensym' from cl package called at runtime > In cl.el I see that the function is autoloaded. Is it supposed to be > used? When? How? My guess is that it's present in the macro-expanded code. It's not quite autoloaded (the autoload cookie only means that it'll be autoloaded if you've done (require 'cl) before). Try to figure out which macro-call causes the above problem, we may want to fix the macro so as to use make-symbol instead. Stefan