* lisp/org.el (org-icompleting-read): Let `completing-read' or
equivalent sort out type of completion.
(org-olpath-completing-read): Revert partially
1a73641770
.
This commit is contained in:
parent
2f0bccad9c
commit
50ba0a5ed6
|
@ -10512,10 +10512,6 @@ Should be called like `completing-read'."
|
|||
(org-bound-and-true-p iswitchb-mode))
|
||||
#'org-iswitchb-completing-read)
|
||||
(t #'completing-read))
|
||||
(pop args)
|
||||
(if (org-some #'consp (car args))
|
||||
(mapcar #'car (pop args))
|
||||
(pop args))
|
||||
args)))))
|
||||
|
||||
(defun org-extract-attributes (s)
|
||||
|
@ -12126,7 +12122,6 @@ this is used for the GOTO interface."
|
|||
(org-completion-use-iswitchb nil)) ; or iswitchb
|
||||
(apply #'org-icompleting-read
|
||||
prompt
|
||||
collection
|
||||
(lambda (string predicate &optional flag)
|
||||
(cond
|
||||
((eq flag nil) (try-completion string thetable))
|
||||
|
|
Loading…
Reference in New Issue