From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Bug: org-capture Does not take user to any new buffer Date: Tue, 05 Jun 2012 14:04:28 -0400 Message-ID: <4431.1338919468@alphaville> References: <1414.1338868583@alphaville> <3175.1338910540@alphaville> <3362.1338911751@alphaville> <3893.1338915692@alphaville> <4263.1338918357@alphaville> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:52231) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sby7N-0006fc-BX for emacs-orgmode@gnu.org; Tue, 05 Jun 2012 14:04:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sby7L-0002Kl-8c for emacs-orgmode@gnu.org; Tue, 05 Jun 2012 14:04:32 -0400 Received: from g6t0184.atlanta.hp.com ([15.193.32.61]:22038) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sby7L-0002KR-1R for emacs-orgmode@gnu.org; Tue, 05 Jun 2012 14:04:31 -0400 In-Reply-To: Message from Nick Dokos of "Tue, 05 Jun 2012 13:45:57 EDT." <4263.1338918357@alphaville> 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: Mike Fitzgerald Cc: emacs-orgmode@gnu.org Nick Dokos wrote: > Mike Fitzgerald wrote: > > > Setup > > -I performed my org-mode update by downloading org-7.8.11.zip > > from orgmode.org? or somewhere else? > I've now downloaded the zip file from http://orgmode.org/org-7.8.11.zip, unpacked it in ~/.emacs.d and started an emacs with a minimal init file: emacs -q -l ~/src/minimal.emacs/minimal.org.el where minimal.org.el contains: --8<---------------cut here---------------start------------->8--- ;;; -*- mode: emacs-lisp -*- (add-to-list 'load-path (expand-file-name "~/.emacs.d/org-7.8.11/lisp")) (add-to-list 'load-path (expand-file-name "~/.emacs.d/org-7.8.11/contrib/lisp")) (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode)) (setq org-fontify-emphasized-text nil) (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) (require 'org-capture) (setq org-capture-templates '(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks") "* TODO %?\n %i\n %a") ("j" "Journal" entry (file+datetree "~/org/journal.org") "* %?\nEntered on %U\n %i\n %a"))) --8<---------------cut here---------------end--------------->8--- I did *not* byte-compile anything and capture works with no problems. Nick