Nick Dokos <nicholas.do...@hp.com> wrote: > Mike Fitzgerald <mikef...@gmail.com> 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