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
62c804f8
Commit
62c804f8
authored
Apr 25, 2002
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(find-name-dired): Don't quote pattern twice.
parent
0344bc5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/find-dired.el
lisp/find-dired.el
+2
-2
No files found.
lisp/ChangeLog
View file @
62c804f8
2002-04-25 Andreas Schwab <schwab@suse.de>
* find-dired.el (find-name-dired): Don't quote pattern twice.
2002-04-26 Miles Bader <miles@gnu.org>
* cus-edit.el (customize-face, customize-face-other-window):
...
...
lisp/find-dired.el
View file @
62c804f8
;;; find-dired.el --- run a `find' command and dired the output
;; Copyright (C) 1992, 1994, 1995, 2000 Free Software Foundation, Inc.
;; Copyright (C) 1992, 1994, 1995, 2000
, 2002
Free Software Foundation, Inc.
;; Author: Roland McGrath <roland@gnu.org>,
;; Sebastian Kremer <sk@thp.uni-koeln.de>
...
...
@@ -159,7 +159,7 @@ The command run (after changing into DIR) is
find . -name 'PATTERN' -ls"
(
interactive
"DFind-name (directory): \nsFind-name (filename wildcard): "
)
(
find-dired
dir
(
concat
"-name
'
"
(
shell-quote-argument
pattern
)
"'"
)))
(
find-dired
dir
(
concat
"-name "
(
shell-quote-argument
pattern
))))
;; This functionality suggested by
;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc)
...
...
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