aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2008-05-06 00:51:56 +0000
committerStefan Monnier2008-05-06 00:51:56 +0000
commita8b0c38b6493b9f3e2bd5f67f9e778dfeaaeca75 (patch)
tree45213a7ad10b5c9f21eecbc3e049f255dfff172a /lisp
parentbe636037294fc681546f3b94d3b2e3e59bf0eedb (diff)
downloademacs-a8b0c38b6493b9f3e2bd5f67f9e778dfeaaeca75.tar.gz
emacs-a8b0c38b6493b9f3e2bd5f67f9e778dfeaaeca75.zip
(dired-read-dir-and-switches): Fix up last change.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/dired.el9
2 files changed, 11 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 92bb56f5392..8b3d4af9215 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,11 @@
12008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * dired.el (dired-read-dir-and-switches): Fix up last change.
4
12008-05-05 Eric S. Raymond <esr@snark.thyrsus.com> 52008-05-05 Eric S. Raymond <esr@snark.thyrsus.com>
2 6
3 * vc.el (vc-deduce-fileset): Lift all the policy and UI 7 * vc.el (vc-deduce-fileset): Lift all the policy and UI
4 stuff out of this function, move it to vc-dispatcher-selection-set.k 8 stuff out of this function, move it to vc-dispatcher-selection-set.
5 9
62008-05-05 Sam Steingold <sds@gnu.org> 102008-05-05 Sam Steingold <sds@gnu.org>
7 11
diff --git a/lisp/dired.el b/lisp/dired.el
index e6c1dbd16c9..c22e27fd95e 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -606,9 +606,12 @@ Don't use that together with FILTER."
606 (minibuffer-with-setup-hook 606 (minibuffer-with-setup-hook
607 (lambda () 607 (lambda ()
608 (setq minibuffer-default default) 608 (setq minibuffer-default default)
609 (setq minibuffer-completing-file-name t) 609 (set (make-local-variable 'minibuffer-completing-file-name)
610 (setq completion-ignore-case 610 ;; t means "from now until the next minibuffer", whereas
611 read-file-name-completion-ignore-case) 611 ;; `lambda' means "only here".
612 'lambda)
613 (set (make-local-variable 'completion-ignore-case)
614 read-file-name-completion-ignore-case)
612 (setq default-directory defdir)) 615 (setq default-directory defdir))
613 (substitute-in-file-name 616 (substitute-in-file-name
614 (completing-read 617 (completing-read