emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113382: * ido.el (dired-do-copy, dired): Set 'ido p


From: Leo Liu
Subject: [Emacs-diffs] trunk r113382: * ido.el (dired-do-copy, dired): Set 'ido property.
Date: Fri, 12 Jul 2013 01:02:44 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113382
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/11954
committer: Leo Liu <address@hidden>
branch nick: trunk
timestamp: Fri 2013-07-12 09:01:53 +0800
message:
  * ido.el (dired-do-copy, dired): Set 'ido property.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/ido.el                    ido.el-20091113204419-o5vbwnq5f7feedwu-2430
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-07-11 17:16:19 +0000
+++ b/lisp/ChangeLog    2013-07-12 01:01:53 +0000
@@ -1,3 +1,7 @@
+2013-07-12  Leo Liu  <address@hidden>
+
+       * ido.el (dired-do-copy, dired): Set 'ido property.  (Bug#11954)
+
 2013-07-11  Glenn Morris  <address@hidden>
 
        * emacs-lisp/edebug.el: Require cl-lib at run-time too.

=== modified file 'lisp/ido.el'
--- a/lisp/ido.el       2013-07-11 02:59:54 +0000
+++ b/lisp/ido.el       2013-07-12 01:01:53 +0000
@@ -4727,9 +4727,12 @@
 
 ;;; 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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]