From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman" Newsgroups: gmane.emacs.devel Subject: Autoloaded defcustoms Date: Mon, 5 Jan 2009 19:21:45 +0100 Message-ID: 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 1231179740 8975 80.91.229.12 (5 Jan 2009 18:22:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 5 Jan 2009 18:22:20 +0000 (UTC) To: "Emacs Devel" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 05 19:23:28 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 1LJu6c-0006a1-0j for ged-emacs-devel@m.gmane.org; Mon, 05 Jan 2009 19:23:14 +0100 Original-Received: from localhost ([127.0.0.1]:59062 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LJu5M-0004Fm-AU for ged-emacs-devel@m.gmane.org; Mon, 05 Jan 2009 13:21:56 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LJu5E-0004Eb-Pq for emacs-devel@gnu.org; Mon, 05 Jan 2009 13:21:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LJu5E-0004EG-Cn for emacs-devel@gnu.org; Mon, 05 Jan 2009 13:21:48 -0500 Original-Received: from [199.232.76.173] (port=60938 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LJu5D-0004E5-QT for emacs-devel@gnu.org; Mon, 05 Jan 2009 13:21:47 -0500 Original-Received: from fg-out-1718.google.com ([72.14.220.152]:39973) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LJu5D-0007wH-1V for emacs-devel@gnu.org; Mon, 05 Jan 2009 13:21:47 -0500 Original-Received: by fg-out-1718.google.com with SMTP id l26so2840787fgb.30 for ; Mon, 05 Jan 2009 10:21:45 -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:mime-version:content-type:content-transfer-encoding :content-disposition; bh=ZcKG4PTc0fHVbIWJDeNacUkQk1MgiCbGcfWJ5HUVWuw=; b=PD8fTuPjOt0IiJsDjunNiNBQAcDnB7jD7qnWgGUnaZLD78B6Cm9xuxK/1OXsQrm3Rj aqNATOHlqi/QJyi+XR2qSWFfRfo+mSoGLKa6WkC6LvuivlLb89JcMR1rTqRvbz5+xGsG HBLoou0+wuB/v5zH9kD3vSlB1pCPuhUDJmz5E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=StKJiOafIg3aUORTK6ZFHKxOLdEuvD4qhpwfy5aVKrSKu+fLHE0ryzInnZTBwPGRCT XMxVNv2QZoSB4YAeFMN4FDflzUWVFyajHl5JwTTg2ZMQFMhq0oGiyJv/M4kIz8b3QFrx PGveuokdFHQb1fkTIaJ6HQFEP7Qv++QusJwvU= Original-Received: by 10.86.54.3 with SMTP id c3mr12318525fga.60.1231179705146; Mon, 05 Jan 2009 10:21:45 -0800 (PST) Original-Received: by 10.86.35.9 with HTTP; Mon, 5 Jan 2009 10:21:45 -0800 (PST) Content-Disposition: inline X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:107614 Archived-At: If you add an autoload cookie to a defcustom ;;;###autoload (defcustom ourcomments-ido-ctrl-tab nil and use get-file-autoloads on this then you get a load def (defvar ourcomments-ido-ctrl-tab nil "\ bla bla doc") (custom-autoload 'ourcomments-ido-ctrl-tab "ourcomments-util" nil) This does not take care of :set etc in the defcustom AFAICS. Shouldn't it do that? (Is this the reason that minor modes defined in libraries external to Emacs are not turned on properly?)