Ver código fonte

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

Carsten Dominik 16 anos atrás
pai
commit
59f70c6ba6
2 arquivos alterados com 6 adições e 2 exclusões
  1. 5 1
      lisp/ChangeLog
  2. 1 1
      lisp/org.el

+ 5 - 1
lisp/ChangeLog

@@ -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.
 

+ 1 - 1
lisp/org.el

@@ -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)