From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yagnesh Raghava Yakkala Subject: Re: fast navigation Date: Wed, 21 Dec 2011 22:31:37 +0900 Message-ID: <87iplacapy.fsf@live.com> References: <4EE9F89D.1060301@sergio.spb.ru> <20111215151318.GC12790@soloJazz.com> <4EEA9293.50506@sergio.spb.ru> <874nx15ayq.fsf@ericabrahamsen.net> <4EEBE2FE.2020009@sergio.spb.ru> <87wr9tzxgu.fsf@ericabrahamsen.net> <4EEE1D93.8070008@sergio.spb.ru> <87k45tz5yp.fsf@ericabrahamsen.net> <4EEFC683.7020707@sergio.spb.ru> <874nwvfzjw.fsf@ericabrahamsen.net> <4EF07E7B.3000807@sergio.spb.ru> <87k45qrh9x.fsf@altern.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:33883) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RdMH2-00066l-EA for emacs-orgmode@gnu.org; Wed, 21 Dec 2011 08:32:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RdMGw-0004DU-OY for emacs-orgmode@gnu.org; Wed, 21 Dec 2011 08:32:00 -0500 Received: from lo.gmane.org ([80.91.229.12]:43243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RdMGw-0004DN-JU for emacs-orgmode@gnu.org; Wed, 21 Dec 2011 08:31:54 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RdMGu-0001i8-I8 for emacs-orgmode@gnu.org; Wed, 21 Dec 2011 14:31:52 +0100 Received: from raghava-note.lowtem.hokudai.ac.jp ([133.87.217.249]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 21 Dec 2011 14:31:52 +0100 Received: from yagnesh by raghava-note.lowtem.hokudai.ac.jp with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 21 Dec 2011 14:31:52 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hi, Leo Alekseyev writes: > I recorded the bug in a short screencast. emacs was started with -Q; > in the second part of the screencast it was restarted with a config > file that only included ido mode > > http://www.youtube.com/watch?v=z6nDUh0RH_c&feature=youtu.be > The attached highly unrelible online PATCH fixes the problem. I dont know it has any side effects. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=org.el.diff diff --git a/lisp/org.el b/lisp/org.el index 7e24367..02a4666 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -6797,7 +6797,7 @@ hierarchy above." (selected-point (if (eq interface 'outline) (car (org-get-location (current-buffer) org-goto-help)) - (let ((pa (org-refile-get-location "Goto"))) + (let ((pa (org-refile-get-location "Goto" nil nil t))) (org-refile-check-position pa) (nth 3 pa))))) (if selected-point --=-=-= Content-Type: text/plain -- YYR --=-=-=--