From a9a464ba0d6a31ce90473b1a5a409430c1a64294 Mon Sep 17 00:00:00 2001 From: David Maus Date: Thu, 23 Sep 2010 21:04:10 +0200 Subject: [PATCH] Widen to remove possible restrictions in target buffer * org-capture.el (org-capture-place-template): Widen to remove possible restrictions in target buffer. Jules Bean wrote: >If I run org-capture with the template: >("t" "Todo" entry (file+headline >"/Users/jules/work/TODO.org" "Tasks") "* TODO %? > (Captured at %u) > %i > %a >") >whilst I have narrowed (using, e.g., org-narrow-to-subtree) the buffer >that contains TODO.org, a new "* Tasks" headline is inserted at the >end of my narrowing and the new entry is added there, which messes up >the hierarchy of the file. --- lisp/org-capture.el | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lisp/org-capture.el b/lisp/org-capture.el index a3d40f0..44face1 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -681,6 +681,7 @@ already gone." (delete-other-windows) (org-switch-to-buffer-other-window (org-capture-get-indirect-buffer (org-capture-get :buffer) "CAPTURE")) + (widen) (show-all) (goto-char (org-capture-get :pos)) (org-set-local 'org-capture-target-marker -- 1.7.1