From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: org-refile bug? org-back-to-heading: before first heading Date: Wed, 16 Jan 2008 18:32:03 -0500 Message-ID: <87wsq9fito.fsf@gollum.intra.norang.ca> 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 1JFHk3-0000Tl-7F for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 18:32:19 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JFHk2-0000Sh-Ey for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 18:32:18 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JFHk1-0000S7-UI for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 18:32:17 -0500 Received: from main.gmane.org ([80.91.229.2] 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 1JFHk1-0006bL-JY for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 18:32:17 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JFHjy-000618-AW for emacs-orgmode@gnu.org; Wed, 16 Jan 2008 23:32:14 +0000 Received: from cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com ([99.239.148.180]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 16 Jan 2008 23:32:14 +0000 Received: from bernt by cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 16 Jan 2008 23:32:14 +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 Hi Carsten, I'm playing with org-refile and in some cases it's not working for me. Here's a test.org file and minimal emacs setup you can try to use to reproduce the problem. Org-mode version 5.18a GNU Emacs 22.1.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2007-11-03 on pacem, modified by Debian ,----[ ~/minimal.emacs ] | (global-font-lock-mode t) | (add-to-list 'load-path (expand-file-name "~/git/org-mode")) | (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) | (require 'org-install) | (define-key global-map "\C-ca" 'org-agenda) | (custom-set-variables | '(org-agenda-files (quote ("~/org/test.org")))) | (setq org-use-fast-todo-selection t) `---- ,----[ test.org ] | #+STARTUP: contents | * one | ** TODO one-one | * Two | ** TODO Two-one | SCHEDULED: <2008-01-16 Wed> | ** TODO Refile me to one `---- Now do the following: $ emacs -q -l ~/minimal.emacs | Key Sequence | Description | |------------------------+-------------------------------------------------------------------------| | C-a a a | Go to agenda for the week | | down arrow | Move to scheduled task Two-one | | RETURN | Go to task in test.org | | down arrow | Go to task ** TODO Refile me to one | | C-c C-w | org-refile | | o TAB | Refile to * one | I get the following error text: org-back-to-heading: before first heading If I try to move back to the org file from the agenda by hitting return on the displayed scheduled task I get this error: call-interactively: Wrong type argument: integer-or-marker-p, nil --- If I don't display the agenda first... and just find-file to ~/org/test.org the org-refile works fine. Regards, Bernt