summaryrefslogtreecommitdiff
path: root/lisp/filecache.el
diff options
context:
space:
mode:
authorPeter Breton <pbreton@attbi.com>2000-08-31 23:45:43 +0000
committerPeter Breton <pbreton@attbi.com>2000-08-31 23:45:43 +0000
commitb7b98bb5bdd3ff4bdeea2ffa159d58a9d57808ad (patch)
treec96f3489ea76cba388cefb90ec1551f263afdec5 /lisp/filecache.el
parente401190c8ea517f159d61b3ebed0e5c043a663d9 (diff)
downloademacs-b7b98bb5bdd3ff4bdeea2ffa159d58a9d57808ad.tar.gz
(file-cache-add-directory-using-find): Don't quote wildcards on MS-DOS.
Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
Diffstat (limited to 'lisp/filecache.el')
-rw-r--r--lisp/filecache.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/filecache.el b/lisp/filecache.el
index 5af516179c5..c21b93ba711 100644
--- a/lisp/filecache.el
+++ b/lisp/filecache.el
@@ -3,7 +3,7 @@
;; Author: Peter Breton <pbreton@cs.umb.edu>
;; Created: Sun Nov 10 1996
;; Keywords: convenience
-;; Time-stamp: <2000-08-28 16:18:03 pbreton>
+;; Time-stamp: <2000-08-31 19:44:13 pbreton>
;;
;; Copyright (C) 1996 Free Software Foundation, Inc.
@@ -324,8 +324,7 @@ Find is run in DIRECTORY."
(call-process file-cache-find-command nil
(get-buffer file-cache-buffer) nil
dir "-name"
- (if (memq system-type
- (list 'windows-nt 'ms-dos)) "'*'" "*")
+ (if (eq system-type 'windows-nt) "'*'" "*")
"-print")
(file-cache-add-from-file-cache-buffer)))