Mercurial > emacs
diff lisp/filecache.el @ 31313:2c7c30fea1ab
(file-cache-add-directory-using-find): Don't quote wildcards on MS-DOS.
Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
| author | Peter Breton <pbreton@attbi.com> |
|---|---|
| date | Thu, 31 Aug 2000 23:45:43 +0000 |
| parents | 5102c4c410c2 |
| children | 03fa22658c6f |
line wrap: on
line diff
--- a/lisp/filecache.el Thu Aug 31 17:19:15 2000 +0000 +++ b/lisp/filecache.el Thu Aug 31 23:45:43 2000 +0000 @@ -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 @@ (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)))
