diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1e2c4dbc6..f84f064ac 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-02-17 Carsten Dominik + * 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. diff --git a/lisp/org.el b/lisp/org.el index 3b71e5847..fb344c09c 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -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)