Mercurial > emacs
annotate lisp/find-dired.el @ 24693:7d78745d1195
(display-time-update): Allow for wrap-around when
checking against display-time-server-down-time.
author | Andrew Innes <andrewi@gnu.org> |
---|---|
date | Tue, 04 May 1999 17:34:36 +0000 |
parents | e4a895537576 |
children | cbe304a26771 |
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 |
14169 | 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> |
21057 | 7 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: unix |
294 | 9 |
14169 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
26 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
28 |
292 | 29 (require 'dired) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
30 |
20597 | 31 (defgroup find-dired nil |
32 "Run a `find' command and dired the output." | |
33 :group 'dired | |
34 :prefix "find-") | |
35 | |
11035 | 36 ;; 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
|
37 ;; Note -b, at least GNU find quotes spaces etc. in filenames |
474 | 38 ;;;###autoload |
20597 | 39 (defcustom find-ls-option |
40 (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") | |
41 '("-exec ls -ld {} \\;" . "-ld")) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
42 "*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
|
43 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
|
44 gives the option (or options) to `find' that produce the desired output. |
20597 | 45 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output." |
46 :type '(cons (string :tag "Find Option") | |
47 (string :tag "Ls Switches")) | |
48 :group 'find-dired) | |
474 | 49 |
50 ;;;###autoload | |
20597 | 51 (defcustom find-grep-options |
16569
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
52 (if (or (eq system-type 'berkeley-unix) |
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
53 (string-match "solaris2" system-configuration) |
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
54 (string-match "irix" system-configuration)) |
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
55 "-s" "-q") |
474 | 56 "*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
|
57 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |
20597 | 58 On other systems, the closest you can come is to use `-l'." |
59 :type 'string | |
60 :group 'find-dired) | |
292 | 61 |
62 (defvar find-args nil | |
63 "Last arguments given to `find' by \\[find-dired].") | |
64 | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
65 ;; 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
|
66 (defvar find-args-history nil) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
67 |
292 | 68 ;;;###autoload |
69 (defun find-dired (dir args) | |
22630
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
70 "Run `find' and go into Dired mode on a buffer of the output. |
474 | 71 The command run (after changing into DIR) is |
72 | |
16823 | 73 find . \\( ARGS \\) -ls |
74 | |
75 except that the variable `find-ls-option' specifies what to use | |
76 as the final argument." | |
292 | 77 (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
|
78 (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
|
79 '(find-args-history . 1)))) |
22630
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
80 (let ((dired-buffers dired-buffers)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
81 ;; Expand DIR ("" means default-directory), and make sure it has a |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
82 ;; trailing slash. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
83 (setq dir (abbreviate-file-name |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
84 (file-name-as-directory (expand-file-name dir)))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
85 ;; Check that it's really a directory. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
86 (or (file-directory-p dir) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
87 (error "find-dired needs a directory: %s" dir)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
88 (switch-to-buffer (get-buffer-create "*Find*")) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
89 (widen) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
90 (kill-all-local-variables) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
91 (setq buffer-read-only nil) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
92 (erase-buffer) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
93 (setq default-directory dir |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
94 find-args args ; save for next interactive call |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
95 args (concat "find . " |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
96 (if (string= args "") |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
97 "" |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
98 (concat "\\( " args " \\) ")) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
99 (car find-ls-option))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
100 ;; The next statement will bomb in classic dired (no optional arg allowed) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
101 (dired-mode dir (cdr find-ls-option)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
102 ;; This really should rerun the find command, but I don't |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
103 ;; have time for that. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
104 (use-local-map (append (make-sparse-keymap) (current-local-map))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
105 (define-key (current-local-map) "g" 'undefined) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
106 ;; Set subdir-alist so that Tree Dired will work: |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
107 (if (fboundp 'dired-simple-subdir-alist) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
108 ;; will work even with nested dired format (dired-nstd.el,v 1.15 |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
109 ;; and later) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
110 (dired-simple-subdir-alist) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
111 ;; else we have an ancient tree dired (or classic dired, where |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
112 ;; this does no harm) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
113 (set (make-local-variable 'dired-subdir-alist) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
114 (list (cons default-directory (point-min-marker))))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
115 (setq buffer-read-only nil) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
116 ;; Subdir headlerline must come first because the first marker in |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
117 ;; subdir-alist points there. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
118 (insert " " dir ":\n") |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
119 ;; Make second line a ``find'' line in analogy to the ``total'' or |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
120 ;; ``wildcard'' line. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
121 (insert " " args "\n") |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
122 ;; Start the find process. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
123 (let ((proc (start-process-shell-command "find" (current-buffer) args))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
124 (set-process-filter proc (function find-dired-filter)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
125 (set-process-sentinel proc (function find-dired-sentinel)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
126 ;; Initialize the process marker; it is used by the filter. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
127 (move-marker (process-mark proc) 1 (current-buffer))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
128 (setq mode-line-process '(":%s")))) |
292 | 129 |
130 ;;;###autoload | |
131 (defun find-name-dired (dir pattern) | |
132 "Search DIR recursively for files matching the globbing pattern PATTERN, | |
474 | 133 and run dired on those files. |
134 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
135 The command run (after changing into DIR) is | |
136 | |
137 find . -name 'PATTERN' -ls" | |
138 (interactive | |
139 "DFind-name (directory): \nsFind-name (filename wildcard): ") | |
292 | 140 (find-dired dir (concat "-name '" pattern "'"))) |
141 | |
474 | 142 ;; This functionality suggested by |
143 ;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc) | |
144 ;; Subject: find-dired, lookfor-dired | |
145 ;; Date: 10 May 91 17:50:00 GMT | |
146 ;; Organization: University of Waterloo | |
147 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2230
diff
changeset
|
148 (defalias 'lookfor-dired 'find-grep-dired) |
474 | 149 ;;;###autoload |
150 (defun find-grep-dired (dir args) | |
151 "Find files in DIR containing a regexp ARG and start Dired on output. | |
152 The command run (after changing into DIR) is | |
153 | |
154 find . -exec grep -s ARG {} \\\; -ls | |
155 | |
156 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
|
157 (interactive "DFind-grep (directory): \nsFind-grep (grep regexp): ") |
474 | 158 ;; find -exec doesn't allow shell i/o redirections in the command, |
159 ;; or we could use `grep -l >/dev/null' | |
18580
717e09103d06
(find-grep-dired): Use -type f.
Richard M. Stallman <rms@gnu.org>
parents:
16823
diff
changeset
|
160 ;; We use -type f, not ! -type d, to avoid getting screwed |
717e09103d06
(find-grep-dired): Use -type f.
Richard M. Stallman <rms@gnu.org>
parents:
16823
diff
changeset
|
161 ;; by FIFOs and devices. I'm not sure what's best to do |
717e09103d06
(find-grep-dired): Use -type f.
Richard M. Stallman <rms@gnu.org>
parents:
16823
diff
changeset
|
162 ;; about symlinks, so as far as I know this is not wrong. |
474 | 163 (find-dired dir |
18580
717e09103d06
(find-grep-dired): Use -type f.
Richard M. Stallman <rms@gnu.org>
parents:
16823
diff
changeset
|
164 (concat "-type f -exec grep " find-grep-options " " |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
165 args " {} \\\; "))) |
474 | 166 |
292 | 167 (defun find-dired-filter (proc string) |
168 ;; Filter for \\[find-dired] processes. | |
294 | 169 (let ((buf (process-buffer proc))) |
170 (if (buffer-name buf) ; not killed? | |
171 (save-excursion | |
172 (set-buffer buf) | |
173 (save-restriction | |
174 (widen) | |
175 (save-excursion | |
176 (let ((buffer-read-only nil) | |
177 (end (point-max))) | |
178 (goto-char end) | |
179 (insert string) | |
180 (goto-char end) | |
181 (or (looking-at "^") | |
182 (forward-line 1)) | |
183 (while (looking-at "^") | |
184 (insert " ") | |
474 | 185 (forward-line 1)) |
186 ;; Convert ` ./FILE' to ` FILE' | |
187 ;; 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
|
188 ;; starts or ends within the ` ./', so back up a bit: |
474 | 189 (goto-char (- end 3)) ; no error if < 0 |
190 (while (search-forward " ./" nil t) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
191 (delete-region (point) (- (point) 2))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
192 ;; 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
|
193 ;; 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
|
194 (goto-char end) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
195 (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
|
196 (progn |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
197 (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
|
198 (1+ (point))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
199 (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
|
200 )))) |
294 | 201 ;; The buffer has been killed. |
202 (delete-process proc)))) | |
292 | 203 |
204 (defun find-dired-sentinel (proc state) | |
205 ;; Sentinel for \\[find-dired] processes. | |
294 | 206 (let ((buf (process-buffer proc))) |
207 (if (buffer-name buf) | |
208 (save-excursion | |
209 (set-buffer buf) | |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
210 (let ((buffer-read-only nil)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
211 (save-excursion |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
212 (goto-char (point-max)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
213 (insert "\nfind " state) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
214 (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
|
215 (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
|
216 (forward-char 1) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
217 (setq mode-line-process |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
218 (concat ":" |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
219 (symbol-name (process-status proc)))) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
220 ;; 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
|
221 ;; 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
|
222 ;; 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
|
223 (delete-process proc) |
11585
e28ae3856c1d
(find-dired-sentinel): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11035
diff
changeset
|
224 (force-mode-line-update))) |
294 | 225 (message "find-dired %s finished." (current-buffer)))))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
226 |
584 | 227 (provide 'find-dired) |
228 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
229 ;;; find-dired.el ends here |