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: Autoloaded defcustoms Date: Mon, 05 Jan 2009 22:20:04 -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 1231212020 12427 80.91.229.12 (6 Jan 2009 03:20:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 6 Jan 2009 03:20:20 +0000 (UTC) Cc: Emacs Devel To: "Lennart Borgman" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 06 04:21:31 2009 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 1LK2VW-0002EF-EE for ged-emacs-devel@m.gmane.org; Tue, 06 Jan 2009 04:21:30 +0100 Original-Received: from localhost ([127.0.0.1]:54232 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LK2UG-0001Im-RW for ged-emacs-devel@m.gmane.org; Mon, 05 Jan 2009 22:20:12 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LK2UC-0001IX-JL for emacs-devel@gnu.org; Mon, 05 Jan 2009 22:20:08 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LK2UB-0001IA-4W for emacs-devel@gnu.org; Mon, 05 Jan 2009 22:20:08 -0500 Original-Received: from [199.232.76.173] (port=33004 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LK2UA-0001I6-SB for emacs-devel@gnu.org; Mon, 05 Jan 2009 22:20:06 -0500 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182]:52683 helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LK2UA-0000cy-LE for emacs-devel@gnu.org; Mon, 05 Jan 2009 22:20:06 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArMEAHJcYknO+JnM/2dsb2JhbACBbMxphXKBaQ X-IronPort-AV: E=Sophos;i="4.36,334,1228107600"; d="scan'208";a="31833717" Original-Received: from 206-248-153-204.dsl.teksavvy.com (HELO ceviche.home) ([206.248.153.204]) by ironport2-out.teksavvy.com with ESMTP; 05 Jan 2009 22:20:04 -0500 Original-Received: by ceviche.home (Postfix, from userid 20848) id B881D7020E; Mon, 5 Jan 2009 22:20:04 -0500 (EST) In-Reply-To: (Lennart Borgman's message of "Mon, 5 Jan 2009 23:22:53 +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:107625 Archived-At: >>> (custom-autoload 'ourcomments-ido-ctrl-tab "ourcomments-util" nil) > If the load def above is run after custom-set-variables then the > custom-set part of the defcustom symbol is not run since > custom-autoload does not do that. After the above custom-autoload, if custom-set-variables sets this var, it should cause "ourcomments-util" to be loaded, so that the proper :setter is used. At least that's what the 3rd argument (nil) is supposed to do. Stefan