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: custom-reevaluate-setting / custom-initialize-delay Date: Wed, 24 Feb 2010 11:45:35 -0500 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1267029949 27547 80.91.229.12 (24 Feb 2010 16:45:49 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 24 Feb 2010 16:45:49 +0000 (UTC) Cc: "emacs-devel@gnu.org discussions" To: David Reitter Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Feb 24 17:45:45 2010 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.69) (envelope-from ) id 1NkKMq-00050m-OJ for ged-emacs-devel@m.gmane.org; Wed, 24 Feb 2010 17:45:45 +0100 Original-Received: from localhost ([127.0.0.1]:37153 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NkKMp-0004S3-Vx for ged-emacs-devel@m.gmane.org; Wed, 24 Feb 2010 11:45:44 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NkKMl-0004Rw-H4 for emacs-devel@gnu.org; Wed, 24 Feb 2010 11:45:39 -0500 Original-Received: from [140.186.70.92] (port=58829 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NkKMk-0004Ro-PS for emacs-devel@gnu.org; Wed, 24 Feb 2010 11:45:39 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NkKMk-00028i-0y for emacs-devel@gnu.org; Wed, 24 Feb 2010 11:45:38 -0500 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:28053 helo=ironport2-out.pppoe.ca) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NkKMj-00028T-HY for emacs-devel@gnu.org; Wed, 24 Feb 2010 11:45:37 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvsEANLmhEtFpZOk/2dsb2JhbACbEHS9FIRyBIMWHYdS X-IronPort-AV: E=Sophos;i="4.49,532,1262581200"; d="scan'208";a="56665130" Original-Received: from 69-165-147-164.dsl.teksavvy.com (HELO pastel.home) ([69.165.147.164]) by ironport2-out.pppoe.ca with ESMTP; 24 Feb 2010 11:45:35 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id B714A81B0; Wed, 24 Feb 2010 11:45:35 -0500 (EST) In-Reply-To: (David Reitter's message of "Mon, 22 Feb 2010 20:41:44 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.92 (gnu/linux) X-detected-operating-system: by eggs.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:121339 Archived-At: > There's a bug in the initialization customization variables when this > initialization is delayed using `custom-initialize-delay' function. > These get init'd during dumping rather than at run-time. > The documentation suggests that it's supposed to happen at run-time. The problem is for customization variables which use custom-initialize-delay and are autoloaded, because autoload.el ends up stripping away the custom-initialize-delay. So either we should fix autoload.el to handle this correctly or we should not use ;;;###autoload on such defcustom. Stefan