1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

* ido.el (dired-do-copy, dired): Set 'ido property.

Fixes: debbugs:11954
This commit is contained in:
Leo Liu 2013-07-12 09:01:53 +08:00
parent c8536ec405
commit 6c0674ee27
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-07-12 Leo Liu <sdl.web@gmail.com>
* ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
2013-07-11 Glenn Morris <rgm@gnu.org>
* emacs-lisp/edebug.el: Require cl-lib at run-time too.

View File

@ -4727,9 +4727,12 @@ Modified from `icomplete-completions'."
;;; Helper functions for other programs
(put 'dired-do-rename 'ido 'ignore)
(put 'ibuffer-find-file 'ido 'find-file)
(put 'dired 'ido 'dir)
(put 'dired-other-window 'ido 'dir)
;; See http://debbugs.gnu.org/11954 for reasons.
(put 'dired-do-copy 'ido 'ignore)
(put 'dired-do-rename 'ido 'ignore)
;;;###autoload
(defun ido-read-buffer (prompt &optional default require-match)