aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2010-04-29 11:41:23 -0400
committerChong Yidong2010-04-29 11:41:23 -0400
commit27d3cd56caf8cfac459bd114cb184989d2c62423 (patch)
tree8a50529e0bf250aa508894207ae8528606f4c76a
parent09d0284d726bbc5b3ceabdad6131c9d1e902a712 (diff)
downloademacs-27d3cd56caf8cfac459bd114cb184989d2c62423.tar.gz
emacs-27d3cd56caf8cfac459bd114cb184989d2c62423.zip
* ido.el (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
-rw-r--r--etc/NEWS3
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/ido.el2
3 files changed, 5 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 1f59ff29eda..e4288684818 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -114,6 +114,9 @@ define it as a scroll command affected by `scroll-preserve-screen-position.
114 114
115** Archive Mode has basic support to browse 7z archives. 115** Archive Mode has basic support to browse 7z archives.
116 116
117** In ido-mode, C-v is no longer bound to ido-toggle-vc.
118The reason is that this interferes with cua-mode.
119
117** partial-completion-mode is now obsolete. 120** partial-completion-mode is now obsolete.
118You can get the same behavior with 121You can get the same behavior with
119(setq completion-styles '(partial-completion initials)). 122(setq completion-styles '(partial-completion initials)).
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1e0f4cb554c..03a2376d3cd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,7 @@
12010-04-29 Chong Yidong <cyd@stupidchicken.com> 12010-04-29 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * ido.el (ido-init-completion-maps): Remove C-v binding (Bug#5765). 3 * ido.el (ido-init-completion-maps): Remove C-v binding.
4 (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
4 5
52010-04-29 Chong Yidong <cyd@stupidchicken.com> 62010-04-29 Chong Yidong <cyd@stupidchicken.com>
6 7
diff --git a/lisp/ido.el b/lisp/ido.el
index 625baa8e682..f75f02969fd 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -322,7 +322,6 @@
322 322
323;;; Code: 323;;; Code:
324 324
325(defvar cua-inhibit-cua-keys)
326(defvar recentf-list) 325(defvar recentf-list)
327 326
328;;; User Variables 327;;; User Variables
@@ -4608,7 +4607,6 @@ For details of keybindings, see `ido-find-file'."
4608 (when (ido-active) 4607 (when (ido-active)
4609 (add-hook 'pre-command-hook 'ido-tidy nil t) 4608 (add-hook 'pre-command-hook 'ido-tidy nil t)
4610 (add-hook 'post-command-hook 'ido-exhibit nil t) 4609 (add-hook 'post-command-hook 'ido-exhibit nil t)
4611 (setq cua-inhibit-cua-keys t)
4612 (when (featurep 'xemacs) 4610 (when (featurep 'xemacs)
4613 (ido-exhibit) 4611 (ido-exhibit)
4614 (goto-char (point-min))) 4612 (goto-char (point-min)))