diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-03-28 15:31:27 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-03-28 15:31:27 -0400 |
commit | 7ed287b581c0347bf7abfb5bb4e3bdfd8685c457 (patch) | |
tree | ec4fbaff0a3b661524ad26808673ede1677e6d6b /lisp/find-dired.el | |
parent | 11700c50ae33180309cff7d9037ba480614c6dbd (diff) | |
download | emacs-7ed287b581c0347bf7abfb5bb4e3bdfd8685c457.tar.gz |
* find-dired.el (find-dired): Use read-directory-name (Bug#5777).
Diffstat (limited to 'lisp/find-dired.el')
-rw-r--r-- | lisp/find-dired.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index 9458fdfec43..0c8229c8f7a 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el @@ -99,7 +99,7 @@ The command run (after changing into DIR) is except that the variable `find-ls-option' specifies what to use as the final argument." - (interactive (list (read-file-name "Run find in directory: " nil "" t) + (interactive (list (read-directory-name "Run find in directory: " nil "" t) (read-string "Run find (with args): " find-args '(find-args-history . 1)))) (let ((dired-buffers dired-buffers)) |