From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Problems Setting Drawers in .emacs Date: Mon, 27 Aug 2012 01:10:16 -0400 Message-ID: <21081.1346044216@alphaville> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59459) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T5raf-00030w-7P for emacs-orgmode@gnu.org; Mon, 27 Aug 2012 01:10:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T5rad-0004ln-Pp for emacs-orgmode@gnu.org; Mon, 27 Aug 2012 01:10:21 -0400 Received: from g4t0016.houston.hp.com ([15.201.24.19]:44589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T5rad-0004kL-IZ for emacs-orgmode@gnu.org; Mon, 27 Aug 2012 01:10:19 -0400 In-Reply-To: Message from Rodolfo Aramayo of "Sun, 26 Aug 2012 23:39:40 CDT." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Rodolfo Aramayo Cc: emacs-orgmode@gnu.org Rodolfo Aramayo wrote: > Hi, > > I am having essentially the same problem described on the following thread: > > http://thread.gmane.org/gmane.emacs.orgmode/22263 > > Which is essentially: > > when I define in my .emacs file: > > ;; Define some default drawers. > (setq org-drawers (quote ("PROPERTIES" "SETUP"))) > > 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 > indicates that org isn't recognising them as drawers. > If I however define a drawer in my org file like: > #+DRAWERS: NOTES > this works correctly > > I am using Org-mode version 7.8.11 and GNU Emacs 24.1.1 > (x86_64-apple-darwin10.8.0) > > Are there any known fixes for this issue? > I cannot reproduce this. With the appended minimal .emacs, I get completion on the drawer names and as far as I can tell everything works. Nick Org-mode version 7.8.11 (release_7.8.11-605-g5f273b @ /home/nick/elisp/org-mode/lisp/) --8<---------------cut here---------------start------------->8--- ;;; -*- mode: emacs-lisp -*- ;;; constant part (add-to-list 'load-path (expand-file-name "~/src/emacs/org/org-mode/lisp")) (add-to-list 'load-path (expand-file-name "~/src/emacs/org/org-mode/contrib/lisp")) (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode)) (require 'org-install) (setq debug-on-error t) (setq debug-on-quit t) (setq eval-expression-print-length nil) (setq eval-expression-print-level nil) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) ;; Define some default drawers. (setq org-drawers (quote ("PROPERTIES" "SETUP" "NOTES"))) --8<---------------cut here---------------end--------------->8---