0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-26 10:32:51 +00:00

Remove the "i:" prefix for ido-complete prompts.

This commit is contained in:
Carsten Dominik 2008-11-21 12:48:43 +01:00
parent 8a13a7704f
commit 59f70c6ba6
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2008-11-21 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-ido-completing-read): Remove the "i:" prefix for
ido-completion propts.
2008-11-21 Carsten Dominik <carsten.dominik@gmail.com>
@ -12,7 +16,7 @@
* org-list.el (org-list-two-spaces-after-bullet-regexp): New
option.
(org-fix-bullet-type): respect
`org-list-two-spaces-after-bullet-regexp'.
`org-list-two-spaces-after-bullet-regexp'.
* org-clock.el (org-clock-load): Clean up the code.

View file

@ -6581,7 +6581,7 @@ used as the link location instead of reading one interactively."
(fboundp 'ido-completing-read)
(boundp 'ido-mode) ido-mode
(listp (second args)))
(apply 'ido-completing-read (concat "i:" (car args)) (cdr args))
(apply 'ido-completing-read (concat (car args)) (cdr args))
(apply 'completing-read args)))
(defun org-extract-attributes (s)