diff options
| author | Stefan Monnier | 2008-05-05 19:27:54 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-05-05 19:27:54 +0000 |
| commit | d0c66c5b2abdbaad24fa694f477a98a57f06e32a (patch) | |
| tree | 97f56874e2183ac03e9180fafc2c9e1b2ba0424f | |
| parent | 149a38379487eeef2286f97dab0e5c84a67004ab (diff) | |
| download | emacs-d0c66c5b2abdbaad24fa694f477a98a57f06e32a.tar.gz emacs-d0c66c5b2abdbaad24fa694f477a98a57f06e32a.zip | |
(dired-read-dir-and-switches): Obey read-file-name-completion-ignore-case.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/dired.el | 2 |
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6934db55dae..be022bee3cf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,6 +1,11 @@ | |||
| 1 | 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * dired.el (dired-read-dir-and-switches): | ||
| 4 | Obey read-file-name-completion-ignore-case. | ||
| 5 | |||
| 1 | 2008-05-05 Nick Roberts <nickrob@snap.net.nz> | 6 | 2008-05-05 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 7 | ||
| 3 | * progmodes/compile.el (compilation-error-regexp-alist-alist): | 8 | * progmodes/compile.el (compilation-error-regexp-alist-alist): |
| 4 | Add regexp for Open Watcom compiler output. | 9 | Add regexp for Open Watcom compiler output. |
| 5 | 10 | ||
| 6 | 2008-05-05 Phil Sung <psung@mit.edu> (tiny change) | 11 | 2008-05-05 Phil Sung <psung@mit.edu> (tiny change) |
| @@ -421,8 +426,8 @@ | |||
| 421 | 2008-04-28 Michael Albinus <michael.albinus@gmx.de> | 426 | 2008-04-28 Michael Albinus <michael.albinus@gmx.de> |
| 422 | 427 | ||
| 423 | * net/tramp.el (tramp-mode): New defcustom. | 428 | * net/tramp.el (tramp-mode): New defcustom. |
| 424 | (tramp-file-name-handler, tramp-completion-file-name-handler): Use | 429 | (tramp-file-name-handler, tramp-completion-file-name-handler): |
| 425 | it. | 430 | Use it. |
| 426 | (tramp-replace-environment-variables): Handle "$$". | 431 | (tramp-replace-environment-variables): Handle "$$". |
| 427 | 432 | ||
| 428 | 2008-04-28 Sam Steingold <sds@gnu.org> | 433 | 2008-04-28 Sam Steingold <sds@gnu.org> |
diff --git a/lisp/dired.el b/lisp/dired.el index 51dc58167b5..e6c1dbd16c9 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -607,6 +607,8 @@ Don't use that together with FILTER." | |||
| 607 | (lambda () | 607 | (lambda () |
| 608 | (setq minibuffer-default default) | 608 | (setq minibuffer-default default) |
| 609 | (setq minibuffer-completing-file-name t) | 609 | (setq minibuffer-completing-file-name t) |
| 610 | (setq completion-ignore-case | ||
| 611 | read-file-name-completion-ignore-case) | ||
| 610 | (setq default-directory defdir)) | 612 | (setq default-directory defdir)) |
| 611 | (substitute-in-file-name | 613 | (substitute-in-file-name |
| 612 | (completing-read | 614 | (completing-read |