From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Dunsmore Subject: Re: org-refile bug Date: Wed, 17 Mar 2010 10:31:54 -0500 Message-ID: <87ocin0xsl.fsf@riotblast.dunsmor.com> References: <87634v3g29.fsf@riotblast.dunsmor.com> <878w9rcm0f.fsf@eee.lan> 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 1NrvE3-0000fC-GF for emacs-orgmode@gnu.org; Wed, 17 Mar 2010 11:32:03 -0400 Received: from [140.186.70.92] (port=44414 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NrvE1-0000dv-QV for emacs-orgmode@gnu.org; Wed, 17 Mar 2010 11:32:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NrvDw-0004iJ-4U for emacs-orgmode@gnu.org; Wed, 17 Mar 2010 11:32:01 -0400 Received: from deathroller.dunsmor.com ([98.129.169.48]:42028) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NrvDw-0004iC-0y for emacs-orgmode@gnu.org; Wed, 17 Mar 2010 11:31:56 -0400 In-Reply-To: <878w9rcm0f.fsf@eee.lan> (Mikael Fornius's message of "Wed, 17 Mar 2010 10:53:20 +0100") 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: Mikael Fornius Cc: emacs-orgmode@gnu.org Mikael Fornius writes: > I can non reproduce this problem. > > I Also use current release_6.34c.210.g6976 and tried with basic > completion, ido-completion and iswitchb. > > Can you give some more information? Warnings in *Messages* and maybe > M-x toggle-debug-on-error gives backtrace? Thanks for looking into this. There were no warnings or errors. It just silently failed to file the entry in my org file. Only status messages were shown in *Messages*. It has to do with the contents of my ~/.emacs.d/bookmarks file. When it wasn't working, my bookmarks file contained the following: $ cat .emacs.d/bookmarks ;;;; Emacs Bookmark Format Version 1 ;;;; ;;; This format is meant to be slightly human-readable; ;;; nevertheless, you probably don't want to edit it. ;;; -*- End Of Bookmark File Format Version Stamp -*- (("org-refile-last-stored" (filename . "~/repo/org/todo.org") (front-context-string . "*** Buy some tom") (rear-context-string . "se\n** Gardening\n") (position . 1030)) ("org-remember-last-stored" (filename . "~/repo/org/todo.org") (front-context-string . "*** TODO Buy som") (rear-context-string . "se\n** Gardening\n") (position . 874)) ) I removed the file and then refiling from org-remember using "C-1 C-c C-c" began working. After a successful test, the contents were: $ cat .emacs.d/bookmarks ;;;; Emacs Bookmark Format Version 1 ;;;; ;;; This format is meant to be slightly human-readable; ;;; nevertheless, you probably don't want to edit it. ;;; -*- End Of Bookmark File Format Version Stamp -*- (("org-refile-last-stored" (filename . "~/repo/org/todo.org") (front-context-string . "** test\n* Misc\n*") (rear-context-string . "SEARCH\n\n* Inbox\n") (position . 318)) ("org-remember-last-stored" (filename . "~/repo/org/todo.org") (front-context-string . "** test\n* Misc\n*") (rear-context-string . "SEARCH\n\n* Inbox\n") (position . 318)) ) Any idea what the problem is?