From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Barton Subject: Problems Setting Drawers in .emacs Date: Fri, 12 Feb 2010 16:23:30 +0000 Message-ID: <4B758082.2060007@manor-farm.org> Reply-To: lists@manor-farm.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NfyJ8-0006Nw-CP for emacs-orgmode@gnu.org; Fri, 12 Feb 2010 11:23:54 -0500 Received: from [140.186.70.92] (port=54151 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NfyJ7-0006MW-MK for emacs-orgmode@gnu.org; Fri, 12 Feb 2010 11:23:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NfyJ6-0005zV-RX for emacs-orgmode@gnu.org; Fri, 12 Feb 2010 11:23:53 -0500 Received: from mail.ian-barton.com ([109.74.196.44]:52117 helo=li40-130.members.linode.com) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NfyJ6-0005yK-NB for emacs-orgmode@gnu.org; Fri, 12 Feb 2010 11:23:52 -0500 Received: from localhost (mail.wilkesley.org [127.0.0.1]) by li40-130.members.linode.com (Postfix) with ESMTP id 0C474D339 for ; Fri, 12 Feb 2010 16:23:35 +0000 (GMT) Received: from li40-130.members.linode.com ([127.0.0.1]) by localhost (wilkesley.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EnsubsNP849W for ; Fri, 12 Feb 2010 16:23:34 +0000 (GMT) Received: from [192.168.0.42] (unknown [217.146.125.41]) by li40-130.members.linode.com (Postfix) with ESMTPSA id 84BE2D331 for ; Fri, 12 Feb 2010 16:23:34 +0000 (GMT) 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 Recently I have noticed a problem setting up Drawers. In my .emacs I have: (add-to-list 'load-path "~/.emacs.d/src/lisp") (add-to-list 'load-path "~/.emacs.d/src/org-mode/contrib/lisp") (require 'org-install) (require 'org-babel-init) (org-babel-load-file "~/.emacs.d/blacky.org") In ~/.emacs.d/blacky.el I have: ;; Define some default drawers. (setq org-drawers (quote ("PROPERTIES" "SETUP"))) However, PROPERTIES and SETUP aren't recognised as drawers in my org files. They don't close and open using tab and the fontification of them indicated that org isn't recognising them as drawers. If I define a drawer in my org file like: #+DRAWERS: NOTES this works correctly. Clearly something has got messed up in my setup, but I can't work out what it might be. have moved the org-drawers definition near to the top of blacky.el to no effect. I have also tried deleting my git repo and doing a new checkout. Before I take the axe to my org configuration and start chopping bits off to find out where the problem is, can anyone suggest any reason why this might happen? Ian.