Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
29ddd8fe
Commit
29ddd8fe
authored
Aug 31, 2000
by
Peter Breton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(file-cache-add-directory-using-find): Don't quote wildcards on MS-DOS.
Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
parent
c0f9ea08
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
lisp/filecache.el
lisp/filecache.el
+2
-3
No files found.
lisp/filecache.el
View file @
29ddd8fe
...
...
@@ -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:0
3 pbreton>
;; Time-stamp: <2000-08-
31 19:44:1
3 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
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment