David Maus wrote:
>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.

>I can confirm this with

>Org-mode version 7.01trans (release_7.01h.497.g59fa)

>GNU Emacs 23.2.1 (i486-pc-linux-gnu, GTK+ Version 2.20.0)
> of 2010-08-14 on raven, modified by Debian

Attached should fix this problem.

Best,
  -- David
--
OpenPGP... 0x99ADB83B5A4478E6
Jabber.... dmj...@jabber.org
Email..... dm...@ictsoc.de
From a9a464ba0d6a31ce90473b1a5a409430c1a64294 Mon Sep 17 00:00:00 2001
From: David Maus <dm...@ictsoc.de>
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

Attachment: pgpvwqQbzfLQk.pgp
Description: PGP signature

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to