From mboxrd@z Thu Jan 1 00:00:00 1970 From: Magnus Henoch Subject: Re: org-capture + autoload Date: Thu, 19 Aug 2010 10:32:42 +0200 Message-ID: References: <817hjo5g42.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from [140.186.70.92] (port=36893 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Om0YW-00009Z-J1 for emacs-orgmode@gnu.org; Thu, 19 Aug 2010 04:33:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Om0YV-0006Qz-C9 for emacs-orgmode@gnu.org; Thu, 19 Aug 2010 04:33:00 -0400 Received: from lo.gmane.org ([80.91.229.12]:34069) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Om0YV-0006QM-6Y for emacs-orgmode@gnu.org; Thu, 19 Aug 2010 04:32:59 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Om0YP-0004lN-Nt for emacs-orgmode@gnu.org; Thu, 19 Aug 2010 10:32:53 +0200 Received: from c-f893e255.56-4-64736c14.cust.bredbandsbolaget.se ([85.226.147.248]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 19 Aug 2010 10:32:53 +0200 Received: from magnus.henoch by c-f893e255.56-4-64736c14.cust.bredbandsbolaget.se with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 19 Aug 2010 10:32:53 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Jambunathan K writes: > It would be convenient if I could do a > > M-x customize-group org-capture and/or > M-x customize-variable org-capture-templates > > without having triggered a prior org-capture. > > For now, I trigger a capture, abort it and then proceed ahead with > customizing these. Here is a patch that adds an "autoload cookie" for org-capture-templates. After recompiling, org-install.el should contain an autoload declaration for org-capture-templates. Let's see if the patch tracker likes me :) Magnus --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=org-capture.patch diff --git a/lisp/org-capture.el b/lisp/org-capture.el index c0e41f3..e544964 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -76,6 +76,7 @@ :tag "Org Capture" :group 'org) +;;;###autoload (defcustom org-capture-templates nil "Templates for the creation of new entries. --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--