From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Mann Subject: Re: Refile error - Kill is not a (set of) trees Date: Wed, 05 Aug 2009 15:09:19 +0930 Message-ID: <87y6pyom48.fsf@gmail.com> References: <876220CB-CCCA-4756-A924-29F0E50C3C3C@gmail.com> <3CE9E7E9-825D-4CF6-A734-F750A20F1E8D@gilbert.org> <53DD6892-68AA-4123-BF02-8C7FDB306215@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MYZEU-00005V-UL for emacs-orgmode@gnu.org; Wed, 05 Aug 2009 01:40:14 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MYZEP-0008W7-Bm for emacs-orgmode@gnu.org; Wed, 05 Aug 2009 01:40:13 -0400 Received: from [199.232.76.173] (port=58965 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MYZEP-0008W4-6X for emacs-orgmode@gnu.org; Wed, 05 Aug 2009 01:40:09 -0400 Received: from main.gmane.org ([80.91.229.2]:53784 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MYZEO-00078M-NZ for emacs-orgmode@gnu.org; Wed, 05 Aug 2009 01:40:08 -0400 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1MYZEI-0007xW-S0 for emacs-orgmode@gnu.org; Wed, 05 Aug 2009 05:40:02 +0000 Received: from ppp121-45-39-210.lns10.adl2.internode.on.net ([121.45.39.210]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 05 Aug 2009 05:40:02 +0000 Received: from cshclm by ppp121-45-39-210.lns10.adl2.internode.on.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 05 Aug 2009 05:40:02 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Carsten Dominik writes: > could you please do the following: > > - Run Emacs with a minimal configuration > - Make me a test file that will let me reproduce the bug if possible. Hello Carsten, I've also been experiencing this behaviour lately. I have been able to reproduce this consistently with the following: 1) Create a file `reproduce.org', with the following contents: * Level1-1 ** Level2-1 *** TODO Level3-1 SCHEDULED: <2009-08-05 Wed> ** Level2-2 2) run `emacs -Q' and evalute something resembling the following: (progn (add-to-list 'load-path "path/to/org-mode/lisp") (require 'org-agenda) (setq org-agenda-files '("reproduce.org") org-refile-targets '((("reproduce.org") . (:maxlevel . 2))))) 3) 'M-x org-agenda-list' 4) Move point to the `Level3-1' item in the agenda, 'C-c C-w' and attempt to refile it to, for example, Level2-1. 5) Error: org-paste-subtree: The kill is not a (set of) tree(s) [...] As far as I can tell, the error occurs only when the heading's source buffer is folded at the `Level1-1' heading; I could not reproduce the error while the outermost heading was unfolded, regardless of the level of the refile source / target. I've investigated this error briefly: I believe `org-back-to-heading' moves backward (passed the correct heading), to the outer-most heading, causing `org-end-of-subtree' to then search for the start of heading of the wrong level (too shallow). Resultingly, the killed region may extend passed the end of the target subtree. In the above example, I believe the killed text would include both the level 3 heading and the subsequent level 2 heading. My suspicion is that this is stemming from a problem within outline-mode. org-mode 6.29a GNU Emacs 23.1.50.1 -- Chris