From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeffrey DeLeo Subject: Problem with 7.02 - org-capture-templates not set from init file Date: Mon, 01 Nov 2010 10:06:56 -0400 Message-ID: <86eib5b0jj.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=34380 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PCv2N-00067j-V6 for emacs-orgmode@gnu.org; Mon, 01 Nov 2010 10:07:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PCv2M-0006Qc-GR for emacs-orgmode@gnu.org; Mon, 01 Nov 2010 10:07:03 -0400 Received: from mail-yw0-f41.google.com ([209.85.213.41]:58839) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PCv2M-0006QT-Cf for emacs-orgmode@gnu.org; Mon, 01 Nov 2010 10:07:02 -0400 Received: by ywl5 with SMTP id 5so3194748ywl.0 for ; Mon, 01 Nov 2010 07:07:01 -0700 (PDT) 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 Since moving from org-version 7.01 to 7.02, the variable "org-capture-templates", which I set in my .emacs.el in a custom-set-variables is not being set. No error is generated, just the variable remains nil. Here's how I set it: --8<---------------cut here---------------start------------->8--- '(org-capture-templates (quote (("t" "Todo" entry (file+headline "Tasks.org" "Tasks") "* TODO %? %i %a") ("c" "Care" entry (file+headline "Care.org" "Care Notes") "* %? %U %i %a") ("j" "Journal" entry (file+datetree "Journal.org") "* %?")))) --8<---------------cut here---------------end--------------->8--- Am I doing something funny here, or did something break?