Mercurial > emacs
annotate lisp/find-dired.el @ 13696:f89aa5a5c485
* etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
(gperf): Added keywords for Objective C and GNU macros.
(sym_type): Added values to account for Objective C and GNU macros.
(begtk): The '@' character can start a token.
(objdef, methodlen, objtag): New variables for Objective C.
(consider_token, C_entries): Added code for Objective C.
(plain_C_suffixes): Add .m and .lm for Objective C.
(Yacc_suffixes): Add .ym for Objective yacc.
(GROW_LINEBUFFER): New macro.
(consider_token, C_entries, Pascal_functions): Use the new macro.
(consider_token): Take one more argument. Caller changed.
(consider_token): Use the hashing function to spot GNU macros.
(C_entries): Consider // as a comment start even in plain C for
the sake of Objective C parsing.
(pfnote): Don't make a tag for ctags if there is no name.
(getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
get_scheme, prolog_getit): Name the tag in ctags mode.
(pfnote): Truncate ctags lines to 50 chars, like it worked once.
(Perl_interpreters): Accept "@PERL@" as an interpreter.
(suggest_asking_for_help): New function.
(main, get_language_from_name): Use suggest_asking_for_help.
(main): Let get_language_from_name make language existence check.
(streq, strneq): Check the arguments #if DEBUG.
author | Francesco Potortì <pot@gnu.org> |
---|---|
date | Thu, 07 Dec 1995 09:10:54 +0000 |
parents | df3f81ceb780 |
children | 83f275dcd93a |
rev | line source |
---|---|
2230
6314334d7c2b
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1225
diff
changeset
|
1 ;;; find-dired.el --- run a `find' command and dired the output |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
3 ;;; Copyright (C) 1992, 1994, 1995 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
5 ;; Author: Roland McGrath <roland@gnu.ai.mit.edu>, |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
6 ;; Sebastian Kremer <sk@thp.uni-koeln.de> |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: unix |
294 | 8 |
292 | 9 ;;; This program is free software; you can redistribute it and/or modify |
10 ;;; it under the terms of the GNU General Public License as published by | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
11 ;;; the Free Software Foundation; either version 2, or (at your option) |
292 | 12 ;;; any later version. |
13 ;;; | |
14 ;;; This program is distributed in the hope that it will be useful, | |
15 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;;; GNU General Public License for more details. | |
18 ;;; | |
19 ;;; A copy of the GNU General Public License can be obtained from this | |
20 ;;; program's author (send electronic mail to roland@ai.mit.edu) or from | |
21 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA | |
22 ;;; 02139, USA. | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
23 ;;; |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
24 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
25 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
26 |
292 | 27 (require 'dired) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
28 |
11035 | 29 ;; find's -ls corresponds to these switches. |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
30 ;; Note -b, at least GNU find quotes spaces etc. in filenames |
474 | 31 ;;;###autoload |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
32 (defvar find-ls-option (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
33 '("-exec ls -ld {} \\;" . "-ld")) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
34 "*Description of the option to `find' to produce an `ls -l'-type listing. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
35 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
36 gives the option (or options) to `find' that produce the desired output. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
37 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") |
474 | 38 |
39 ;;;###autoload | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
40 (defvar find-grep-options (if (eq system-type 'berkeley-unix) "-s" "-q") |
474 | 41 "*Option to grep to be as silent as possible. |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
42 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
43 On other systems, the closest you can come is to use `-l'.") |
292 | 44 |
45 (defvar find-args nil | |
46 "Last arguments given to `find' by \\[find-dired].") | |
47 | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
48 ;; History of find-args values entered in the minibuffer. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
49 (defvar find-args-history nil) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
50 |
292 | 51 ;;;###autoload |
52 (defun find-dired (dir args) | |
53 "Run `find' and go into dired-mode on a buffer of the output. | |
474 | 54 The command run (after changing into DIR) is |
55 | |
56 find . \\( ARGS \\) -ls" | |
292 | 57 (interactive (list (read-file-name "Run find in directory: " nil "" t) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
58 (read-string "Run find (with args): " find-args |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
59 '(find-args-history . 1)))) |
474 | 60 ;; Expand DIR ("" means default-directory), and make sure it has a |
61 ;; trailing slash. | |
292 | 62 (setq dir (file-name-as-directory (expand-file-name dir))) |
63 ;; Check that it's really a directory. | |
64 (or (file-directory-p dir) | |
474 | 65 (error "find-dired needs a directory: %s" dir)) |
292 | 66 (switch-to-buffer (get-buffer-create "*Find*")) |
67 (widen) | |
68 (kill-all-local-variables) | |
69 (setq buffer-read-only nil) | |
70 (erase-buffer) | |
71 (setq default-directory dir | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
72 find-args args ; save for next interactive call |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
73 args (concat "find . " |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
74 (if (string= args "") |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
75 "" |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
76 (concat "\\( " args " \\) ")) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
77 (car find-ls-option))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
78 ;; The next statement will bomb in classic dired (no optional arg allowed) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
79 (dired-mode dir (cdr find-ls-option)) |
12485
df3f81ceb780
(find-dired): Undefine the g command.
Richard M. Stallman <rms@gnu.org>
parents:
11996
diff
changeset
|
80 ;; This really should rerun the find command, but I don't |
df3f81ceb780
(find-dired): Undefine the g command.
Richard M. Stallman <rms@gnu.org>
parents:
11996
diff
changeset
|
81 ;; have time for that. |
df3f81ceb780
(find-dired): Undefine the g command.
Richard M. Stallman <rms@gnu.org>
parents:
11996
diff
changeset
|
82 (use-local-map (append (make-sparse-keymap) (current-local-map))) |
df3f81ceb780
(find-dired): Undefine the g command.
Richard M. Stallman <rms@gnu.org>
parents:
11996
diff
changeset
|
83 (define-key (current-local-map) "g" 'undefined) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
84 ;; Set subdir-alist so that Tree Dired will work: |
11996
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
85 (if (fboundp 'dired-simple-subdir-alist) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
86 ;; will work even with nested dired format (dired-nstd.el,v 1.15 |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
87 ;; and later) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
88 (dired-simple-subdir-alist) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
89 ;; else we have an ancient tree dired (or classic dired, where |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
90 ;; this does no harm) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
91 (set (make-local-variable 'dired-subdir-alist) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
92 (list (cons default-directory (point-min-marker))))) |
474 | 93 (setq buffer-read-only nil) |
94 ;; Subdir headlerline must come first because the first marker in | |
95 ;; subdir-alist points there. | |
96 (insert " " dir ":\n") | |
97 ;; Make second line a ``find'' line in analogy to the ``total'' or | |
98 ;; ``wildcard'' line. | |
99 (insert " " args "\n") | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
100 ;; Start the find process. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
101 (let ((proc (start-process-shell-command "find" (current-buffer) args))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
102 (set-process-filter proc (function find-dired-filter)) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
103 (set-process-sentinel proc (function find-dired-sentinel)) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
104 ;; Initialize the process marker; it is used by the filter. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
105 (move-marker (process-mark proc) 1 (current-buffer))) |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
106 (setq mode-line-process '(":%s"))) |
292 | 107 |
108 ;;;###autoload | |
109 (defun find-name-dired (dir pattern) | |
110 "Search DIR recursively for files matching the globbing pattern PATTERN, | |
474 | 111 and run dired on those files. |
112 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
113 The command run (after changing into DIR) is | |
114 | |
115 find . -name 'PATTERN' -ls" | |
116 (interactive | |
117 "DFind-name (directory): \nsFind-name (filename wildcard): ") | |
292 | 118 (find-dired dir (concat "-name '" pattern "'"))) |
119 | |
474 | 120 ;; This functionality suggested by |
121 ;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc) | |
122 ;; Subject: find-dired, lookfor-dired | |
123 ;; Date: 10 May 91 17:50:00 GMT | |
124 ;; Organization: University of Waterloo | |
125 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2230
diff
changeset
|
126 (defalias 'lookfor-dired 'find-grep-dired) |
474 | 127 ;;;###autoload |
128 (defun find-grep-dired (dir args) | |
129 "Find files in DIR containing a regexp ARG and start Dired on output. | |
130 The command run (after changing into DIR) is | |
131 | |
132 find . -exec grep -s ARG {} \\\; -ls | |
133 | |
134 Thus ARG can also contain additional grep options." | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
135 (interactive "DFind-grep (directory): \nsFind-grep (grep regexp): ") |
474 | 136 ;; find -exec doesn't allow shell i/o redirections in the command, |
137 ;; or we could use `grep -l >/dev/null' | |
138 (find-dired dir | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
139 (concat "! -type d -exec grep " find-grep-options " " |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
140 args " {} \\\; "))) |
474 | 141 |
292 | 142 (defun find-dired-filter (proc string) |
143 ;; Filter for \\[find-dired] processes. | |
294 | 144 (let ((buf (process-buffer proc))) |
145 (if (buffer-name buf) ; not killed? | |
146 (save-excursion | |
147 (set-buffer buf) | |
148 (save-restriction | |
149 (widen) | |
150 (save-excursion | |
151 (let ((buffer-read-only nil) | |
152 (end (point-max))) | |
153 (goto-char end) | |
154 (insert string) | |
155 (goto-char end) | |
156 (or (looking-at "^") | |
157 (forward-line 1)) | |
158 (while (looking-at "^") | |
159 (insert " ") | |
474 | 160 (forward-line 1)) |
161 ;; Convert ` ./FILE' to ` FILE' | |
162 ;; This would lose if the current chunk of output | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
163 ;; starts or ends within the ` ./', so back up a bit: |
474 | 164 (goto-char (- end 3)) ; no error if < 0 |
165 (while (search-forward " ./" nil t) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
166 (delete-region (point) (- (point) 2))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
167 ;; Find all the complete lines in the unprocessed |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
168 ;; output and process it to add text properties. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
169 (goto-char end) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
170 (if (search-backward "\n" (process-mark proc) t) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
171 (progn |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
172 (dired-insert-set-properties (process-mark proc) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
173 (1+ (point))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
174 (move-marker (process-mark proc) (1+ (point))))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
175 )))) |
294 | 176 ;; The buffer has been killed. |
177 (delete-process proc)))) | |
292 | 178 |
179 (defun find-dired-sentinel (proc state) | |
180 ;; Sentinel for \\[find-dired] processes. | |
294 | 181 (let ((buf (process-buffer proc))) |
182 (if (buffer-name buf) | |
183 (save-excursion | |
184 (set-buffer buf) | |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
185 (let ((buffer-read-only nil)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
186 (save-excursion |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
187 (goto-char (point-max)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
188 (insert "\nfind " state) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
189 (forward-char -1) ;Back up before \n at end of STATE. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
190 (insert " at " (substring (current-time-string) 0 19)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
191 (forward-char 1) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
192 (setq mode-line-process |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
193 (concat ":" |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
194 (symbol-name (process-status proc)))) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
195 ;; Since the buffer and mode line will show that the |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
196 ;; process is dead, we can delete it now. Otherwise it |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
197 ;; will stay around until M-x list-processes. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
198 (delete-process proc) |
11585
e28ae3856c1d
(find-dired-sentinel): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11035
diff
changeset
|
199 (force-mode-line-update))) |
294 | 200 (message "find-dired %s finished." (current-buffer)))))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
201 |
584 | 202 (provide 'find-dired) |
203 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
204 ;;; find-dired.el ends here |