1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2025-01-20 19:24:20 +00:00

Completion: Turn off ido.el for completing outline paths in steps.

This commit is contained in:
Carsten Dominik 2009-02-17 22:36:48 +01:00
parent 538a536d0d
commit 950334edb3
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2009-02-17 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-olpath-completing-read): Never use ido for this
one.
* org-exp.el (org-export-normalize-links): Use new macro.
* org-macs.el (org-if-unprotected-at): New macro.

View File

@ -8031,7 +8031,8 @@ operation has put the subtree."
(defun org-olpath-completing-read (prompt collection &rest args)
"Read an outline path like a file name."
(let ((thetable collection))
(let ((thetable collection)
(org-completion-use-ido nil)) ; does not work with ido.
(apply
'org-ido-completing-read prompt
(lambda (string predicate &optional flag)