Hi, Leo Alekseyev <dnqu...@gmail.com> 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.
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
-- YYR