Initial revision
[emacs.git] / lisp / dired-aux.el
blob0af40a03c5466d66916555b844c455d5b311a83a
1 ;;; dired-aux.el --- all of dired except what people usually use
3 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
5 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>.
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
14 ;; GNU Emacs 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.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 ;;; Commentary:
25 ;; Rewritten in 1990/1991 to add tree features, file marking and
26 ;; sorting by Sebastian Kremer <sk@thp.uni-koeln.de>.
27 ;; Finished up by rms in 1992.
29 ;;; Code:
31 ;; We need macros in dired.el to compile properly.
32 (eval-when-compile (require 'dired))
34 ;;; 15K
35 ;;;###begin dired-cmd.el
36 ;; Diffing and compressing
38 ;;;###autoload
39 (defun dired-diff (file &optional switches)
40 "Compare file at point with file FILE using `diff'.
41 FILE defaults to the file at the mark.
42 The prompted-for file is the first file given to `diff'."
43 (interactive
44 (let ((default (if (mark)
45 (save-excursion (goto-char (mark))
46 (dired-get-filename t t)))))
47 (list (read-file-name (format "Diff %s with: %s"
48 (dired-get-filename t)
49 (if default
50 (concat "(default " default ") ")
51 ""))
52 (dired-current-directory) default t)
53 (if (fboundp 'diff-read-switches)
54 (diff-read-switches "Options for diff: ")))))
55 (if switches ; Emacs 19's diff has but two
56 (diff file (dired-get-filename t) switches) ; args (yet ;-)
57 (diff file (dired-get-filename t))))
59 ;;;###autoload
60 (defun dired-backup-diff (&optional switches)
61 "Diff this file with its backup file or vice versa.
62 Uses the latest backup, if there are several numerical backups.
63 If this file is a backup, diff it with its original.
64 The backup file is the first file given to `diff'."
65 (interactive (list (if (fboundp 'diff-read-switches)
66 (diff-read-switches "Diff with switches: "))))
67 (if switches
68 (diff-backup (dired-get-filename) switches)
69 (diff-backup (dired-get-filename))))
71 (defun dired-do-chxxx (attribute-name program op-symbol arg)
72 ;; Change file attributes (mode, group, owner) of marked files and
73 ;; refresh their file lines.
74 ;; ATTRIBUTE-NAME is a string describing the attribute to the user.
75 ;; PROGRAM is the program used to change the attribute.
76 ;; OP-SYMBOL is the type of operation (for use in dired-mark-pop-up).
77 ;; ARG describes which files to use, as in dired-get-marked-files.
78 (let* ((files (dired-get-marked-files t arg))
79 (new-attribute
80 (dired-mark-read-string
81 (concat "Change " attribute-name " of %s to: ")
82 nil op-symbol arg files))
83 (operation (concat program " " new-attribute))
84 failures)
85 (setq failures
86 (dired-bunch-files 10000
87 (function dired-check-process)
88 (list operation program new-attribute)
89 files))
90 (dired-do-redisplay arg);; moves point if ARG is an integer
91 (if failures
92 (dired-log-summary
93 (format "%s: error" operation)
94 nil))))
96 ;;;###autoload
97 (defun dired-do-chmod (&optional arg)
98 "Change the mode of the marked (or next ARG) files.
99 This calls chmod, thus symbolic modes like `g+w' are allowed."
100 (interactive "P")
101 (dired-do-chxxx "Mode" "chmod" 'chmod arg))
103 ;;;###autoload
104 (defun dired-do-chgrp (&optional arg)
105 "Change the group of the marked (or next ARG) files."
106 (interactive "P")
107 (dired-do-chxxx "Group" "chgrp" 'chgrp arg))
109 ;;;###autoload
110 (defun dired-do-chown (&optional arg)
111 "Change the owner of the marked (or next ARG) files."
112 (interactive "P")
113 (dired-do-chxxx "Owner" dired-chown-program 'chown arg))
115 ;; Process all the files in FILES in batches of a convenient size,
116 ;; by means of (FUNCALL FUNCTION ARGS... SOME-FILES...).
117 ;; Batches are chosen to need less than MAX chars for the file names,
118 ;; allowing 3 extra characters of separator per file name.
119 (defun dired-bunch-files (max function args files)
120 (let (pending
121 (pending-length 0)
122 failures)
123 ;; Accumulate files as long as they fit in MAX chars,
124 ;; then process the ones accumulated so far.
125 (while files
126 (let* ((thisfile (car files))
127 (thislength (+ (length thisfile) 3))
128 (rest (cdr files)))
129 ;; If we have at least 1 pending file
130 ;; and this file won't fit in the length limit, process now.
131 (if (and pending (> (+ thislength pending-length) max))
132 (setq failures
133 (nconc (apply function (append args pending))
134 failures)
135 pending nil
136 pending-length 0))
137 ;; Do (setq pending (cons thisfile pending))
138 ;; but reuse the cons that was in `files'.
139 (setcdr files pending)
140 (setq pending files)
141 (setq pending-length (+ thislength pending-length))
142 (setq files rest)))
143 (nconc (apply function (append args pending))
144 failures)))
146 ;;;###autoload
147 (defun dired-do-print (&optional arg)
148 "Print the marked (or next ARG) files.
149 Uses the shell command coming from variables `lpr-command' and
150 `lpr-switches' as default."
151 (interactive "P")
152 (let* ((file-list (dired-get-marked-files t arg))
153 (command (dired-mark-read-string
154 "Print %s with: "
155 (apply 'concat lpr-command " " lpr-switches)
156 'print arg file-list)))
157 (dired-run-shell-command (dired-shell-stuff-it command file-list nil))))
159 ;; Read arguments for a marked-files command that wants a string
160 ;; that is not a file name,
161 ;; perhaps popping up the list of marked files.
162 ;; ARG is the prefix arg and indicates whether the files came from
163 ;; marks (ARG=nil) or a repeat factor (integerp ARG).
164 ;; If the current file was used, the list has but one element and ARG
165 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)).
167 (defun dired-mark-read-string (prompt initial op-symbol arg files)
168 ;; PROMPT for a string, with INITIAL input.
169 ;; Other args are used to give user feedback and pop-up:
170 ;; OP-SYMBOL of command, prefix ARG, marked FILES.
171 (dired-mark-pop-up
172 nil op-symbol files
173 (function read-string)
174 (format prompt (dired-mark-prompt arg files)) initial))
176 ;;; Cleaning a directory: flagging some backups for deletion.
178 (defvar dired-file-version-alist)
180 (defun dired-clean-directory (keep)
181 "Flag numerical backups for deletion.
182 Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
183 Positive prefix arg KEEP overrides `dired-kept-versions';
184 Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
186 To clear the flags on these files, you can use \\[dired-flag-backup-files]
187 with a prefix argument."
188 (interactive "P")
189 (setq keep (if keep (prefix-numeric-value keep) dired-kept-versions))
190 (let ((early-retention (if (< keep 0) (- keep) kept-old-versions))
191 (late-retention (if (<= keep 0) dired-kept-versions keep))
192 (dired-file-version-alist ()))
193 (message "Cleaning numerical backups (keeping %d late, %d old)..."
194 late-retention early-retention)
195 ;; Look at each file.
196 ;; If the file has numeric backup versions,
197 ;; put on dired-file-version-alist an element of the form
198 ;; (FILENAME . VERSION-NUMBER-LIST)
199 (dired-map-dired-file-lines (function dired-collect-file-versions))
200 ;; Sort each VERSION-NUMBER-LIST,
201 ;; and remove the versions not to be deleted.
202 (let ((fval dired-file-version-alist))
203 (while fval
204 (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<)))
205 (v-count (length sorted-v-list)))
206 (if (> v-count (+ early-retention late-retention))
207 (rplacd (nthcdr early-retention sorted-v-list)
208 (nthcdr (- v-count late-retention)
209 sorted-v-list)))
210 (rplacd (car fval)
211 (cdr sorted-v-list)))
212 (setq fval (cdr fval))))
213 ;; Look at each file. If it is a numeric backup file,
214 ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion.
215 (dired-map-dired-file-lines (function dired-trample-file-versions))
216 (message "Cleaning numerical backups...done")))
218 ;;; Subroutines of dired-clean-directory.
220 (defun dired-map-dired-file-lines (fun)
221 ;; Perform FUN with point at the end of each non-directory line.
222 ;; FUN takes one argument, the filename (complete pathname).
223 (save-excursion
224 (let (file buffer-read-only)
225 (goto-char (point-min))
226 (while (not (eobp))
227 (save-excursion
228 (and (not (looking-at dired-re-dir))
229 (not (eolp))
230 (setq file (dired-get-filename nil t)) ; nil on non-file
231 (progn (end-of-line)
232 (funcall fun file))))
233 (forward-line 1)))))
235 (defun dired-collect-file-versions (fn)
236 ;; "If it looks like file FN has versions, return a list of the versions.
237 ;;That is a list of strings which are file names.
238 ;;The caller may want to flag some of these files for deletion."
239 (let* ((base-versions
240 (concat (file-name-nondirectory fn) ".~"))
241 (bv-length (length base-versions))
242 (possibilities (file-name-all-completions
243 base-versions
244 (file-name-directory fn)))
245 (versions (mapcar 'backup-extract-version possibilities)))
246 (if versions
247 (setq dired-file-version-alist (cons (cons fn versions)
248 dired-file-version-alist)))))
250 (defun dired-trample-file-versions (fn)
251 (let* ((start-vn (string-match "\\.~[0-9]+~$" fn))
252 base-version-list)
253 (and start-vn
254 (setq base-version-list ; there was a base version to which
255 (assoc (substring fn 0 start-vn) ; this looks like a
256 dired-file-version-alist)) ; subversion
257 (not (memq (string-to-int (substring fn (+ 2 start-vn)))
258 base-version-list)) ; this one doesn't make the cut
259 (progn (beginning-of-line)
260 (delete-char 1)
261 (insert dired-del-marker)))))
263 ;;; Shell commands
264 ;;>>> install (move this function into simple.el)
265 (defun dired-shell-quote (filename)
266 "Quote a file name for inferior shell (see variable `shell-file-name')."
267 ;; Quote everything except POSIX filename characters.
268 ;; This should be safe enough even for really wierd shells.
269 (let ((result "") (start 0) end)
270 (while (string-match "[^---0-9a-zA-Z_./]" filename start)
271 (setq end (match-beginning 0)
272 result (concat result (substring filename start end)
273 "\\" (substring filename end (1+ end)))
274 start (1+ end)))
275 (concat result (substring filename start))))
277 (defun dired-read-shell-command (prompt arg files)
278 ;; "Read a dired shell command prompting with PROMPT (using read-string).
279 ;;ARG is the prefix arg and may be used to indicate in the prompt which
280 ;; files are affected.
281 ;;This is an extra function so that you can redefine it, e.g., to use gmhist."
282 (dired-mark-pop-up
283 nil 'shell files
284 (function read-string)
285 (format prompt (dired-mark-prompt arg files))))
287 ;; The in-background argument is only needed in Emacs 18 where
288 ;; shell-command doesn't understand an appended ampersand `&'.
289 ;;;###autoload
290 (defun dired-do-shell-command (command &optional arg)
291 "Run a shell command COMMAND on the marked files.
292 If no files are marked or a specific numeric prefix arg is given,
293 the next ARG files are used. Just \\[universal-argument] means the current file.
294 The prompt mentions the file(s) or the marker, as appropriate.
296 If there is output, it goes to a separate buffer.
298 Normally the command is run on each file individually.
299 However, if there is a `*' in the command then it is run
300 just once with the entire file list substituted there.
302 No automatic redisplay of dired buffers is attempted, as there's no
303 telling what files the command may have changed. Type
304 \\[dired-do-redisplay] to redisplay the marked files.
306 The shell command has the top level directory as working directory, so
307 output files usually are created there instead of in a subdir."
308 ;;Functions dired-run-shell-command and dired-shell-stuff-it do the
309 ;;actual work and can be redefined for customization.
310 (interactive (list
311 ;; Want to give feedback whether this file or marked files are used:
312 (dired-read-shell-command (concat "! on "
313 "%s: ")
314 current-prefix-arg
315 (dired-get-marked-files
316 t current-prefix-arg))
317 current-prefix-arg))
318 (let* ((on-each (not (string-match "\\*" command)))
319 (file-list (dired-get-marked-files t arg)))
320 (if on-each
321 (dired-bunch-files
322 (- 10000 (length command))
323 (function (lambda (&rest files)
324 (dired-run-shell-command
325 (dired-shell-stuff-it command files t arg))))
327 file-list)
328 ;; execute the shell command
329 (dired-run-shell-command
330 (dired-shell-stuff-it command file-list nil arg)))))
332 ;; Might use {,} for bash or csh:
333 (defvar dired-mark-prefix ""
334 "Prepended to marked files in dired shell commands.")
335 (defvar dired-mark-postfix ""
336 "Appended to marked files in dired shell commands.")
337 (defvar dired-mark-separator " "
338 "Separates marked files in dired shell commands.")
340 (defun dired-shell-stuff-it (command file-list on-each &optional raw-arg)
341 ;; "Make up a shell command line from COMMAND and FILE-LIST.
342 ;; If ON-EACH is t, COMMAND should be applied to each file, else
343 ;; simply concat all files and apply COMMAND to this.
344 ;; FILE-LIST's elements will be quoted for the shell."
345 ;; Might be redefined for smarter things and could then use RAW-ARG
346 ;; (coming from interactive P and currently ignored) to decide what to do.
347 ;; Smart would be a way to access basename or extension of file names.
348 ;; See dired-trns.el for an approach to this.
349 ;; Bug: There is no way to quote a *
350 ;; On the other hand, you can never accidentally get a * into your cmd.
351 (let ((stuff-it
352 (if (string-match "\\*" command)
353 (function (lambda (x)
354 (dired-replace-in-string "\\*" x command)))
355 (function (lambda (x) (concat command " " x))))))
356 (if on-each
357 (mapconcat stuff-it (mapcar 'dired-shell-quote file-list) ";")
358 (let ((fns (mapconcat 'dired-shell-quote
359 file-list dired-mark-separator)))
360 (if (> (length file-list) 1)
361 (setq fns (concat dired-mark-prefix fns dired-mark-postfix)))
362 (funcall stuff-it fns)))))
364 ;; This is an extra function so that it can be redefined by ange-ftp.
365 (defun dired-run-shell-command (command)
366 (shell-command command)
367 ;; Return nil for sake of nconc in dired-bunch-files.
368 nil)
370 ;; In Emacs 19 this will return program's exit status.
371 ;; This is a separate function so that ange-ftp can redefine it.
372 (defun dired-call-process (program discard &rest arguments)
373 ; "Run PROGRAM with output to current buffer unless DISCARD is t.
374 ;Remaining arguments are strings passed as command arguments to PROGRAM."
375 (apply 'call-process program nil (not discard) nil arguments))
377 (defun dired-check-process (msg program &rest arguments)
378 ; "Display MSG while running PROGRAM, and check for output.
379 ;Remaining arguments are strings passed as command arguments to PROGRAM.
380 ; On error, insert output
381 ; in a log buffer and return the offending ARGUMENTS or PROGRAM.
382 ; Caller can cons up a list of failed args.
383 ;Else returns nil for success."
384 (let (err-buffer err (dir default-directory))
385 (message "%s..." msg)
386 (save-excursion
387 ;; Get a clean buffer for error output:
388 (setq err-buffer (get-buffer-create " *dired-check-process output*"))
389 (set-buffer err-buffer)
390 (erase-buffer)
391 (setq default-directory dir ; caller's default-directory
392 err (/= 0
393 (apply (function dired-call-process) program nil arguments)))
394 (if err
395 (progn
396 (dired-log (concat program " " (prin1-to-string arguments) "\n"))
397 (dired-log err-buffer)
398 (or arguments program t))
399 (kill-buffer err-buffer)
400 (message "%s...done" msg)
401 nil))))
403 ;; Commands that delete or redisplay part of the dired buffer.
405 (defun dired-kill-line (&optional arg)
406 (interactive "P")
407 (setq arg (prefix-numeric-value arg))
408 (let (buffer-read-only file)
409 (while (/= 0 arg)
410 (setq file (dired-get-filename nil t))
411 (if (not file)
412 (error "Can only kill file lines.")
413 (save-excursion (and file
414 (dired-goto-subdir file)
415 (dired-kill-subdir)))
416 (delete-region (progn (beginning-of-line) (point))
417 (progn (forward-line 1) (point)))
418 (if (> arg 0)
419 (setq arg (1- arg))
420 (setq arg (1+ arg))
421 (forward-line -1))))
422 (dired-move-to-filename)))
424 ;;;###autoload
425 (defun dired-do-kill-lines (&optional arg fmt)
426 "Kill all marked lines (not the files).
427 With a prefix argument, kill that many lines starting with the current line.
428 \(A negative argument kills lines before the current line.)
429 To kill an entire subdirectory, go to its directory header line
430 and use this command with a prefix argument (the value does not matter)."
431 ;; Returns count of killed lines. FMT="" suppresses message.
432 (interactive "P")
433 (if arg
434 (if (dired-get-subdir)
435 (dired-kill-subdir)
436 (dired-kill-line arg))
437 (save-excursion
438 (goto-char (point-min))
439 (let (buffer-read-only (count 0))
440 (if (not arg) ; kill marked lines
441 (let ((regexp (dired-marker-regexp)))
442 (while (and (not (eobp))
443 (re-search-forward regexp nil t))
444 (setq count (1+ count))
445 (delete-region (progn (beginning-of-line) (point))
446 (progn (forward-line 1) (point)))))
447 ;; else kill unmarked lines
448 (while (not (eobp))
449 (if (or (dired-between-files)
450 (not (looking-at "^ ")))
451 (forward-line 1)
452 (setq count (1+ count))
453 (delete-region (point) (save-excursion
454 (forward-line 1)
455 (point))))))
456 (or (equal "" fmt)
457 (message (or fmt "Killed %d line%s.") count (dired-plural-s count)))
458 count))))
460 ;;;###end dired-cmd.el
462 ;;; 30K
463 ;;;###begin dired-cp.el
465 (defun dired-compress ()
466 ;; Compress or uncompress the current file.
467 ;; Return nil for success, offending filename else.
468 (let* (buffer-read-only
469 (from-file (dired-get-filename))
470 (new-file (dired-compress-file from-file)))
471 (if new-file
472 (progn (dired-update-file-line new-file) nil)
473 (dired-log (concat "Failed to compress" from-file))
474 from-file)))
476 (defun dired-compress-file (file)
477 ;; Compress or uncompress FILE.
478 ;; Return the name of the compressed or uncompressed file.
479 ;; Rerurn nil if no change in files.
480 (let ((handler (find-file-name-handler file)))
481 (cond (handler
482 (funcall handler 'dired-compress-file file))
483 ((file-symlink-p file)
484 nil)
485 ((string-match "\\.Z$" file)
486 (if (dired-check-process (concat "Uncompressing " file)
487 "uncompress" file)
488 (substring file 0 -2)))
490 (if (dired-check-process (concat "Compressing " file)
491 "compress" "-f" file)
492 (concat name ".Z"))))))
494 (defun dired-mark-confirm (op-symbol arg)
495 ;; Request confirmation from the user that the operation described
496 ;; by OP-SYMBOL is to be performed on the marked files.
497 ;; Confirmation consists in a y-or-n question with a file list
498 ;; pop-up unless OP-SYMBOL is a member of `dired-no-confirm'.
499 ;; The files used are determined by ARG (as in dired-get-marked-files).
500 (or (memq op-symbol dired-no-confirm)
501 (let ((files (dired-get-marked-files t arg))
502 (string (if (eq op-symbol 'compress) "Compress or uncompress"
503 (capitalize (symbol-name op-symbol)))))
504 (dired-mark-pop-up nil op-symbol files (function y-or-n-p)
505 (concat string " "
506 (dired-mark-prompt arg files) "? ")))))
508 (defun dired-map-over-marks-check (fun arg op-symbol &optional show-progress)
509 ; "Map FUN over marked files (with second ARG like in dired-map-over-marks)
510 ; and display failures.
512 ; FUN takes zero args. It returns non-nil (the offending object, e.g.
513 ; the short form of the filename) for a failure and probably logs a
514 ; detailed error explanation using function `dired-log'.
516 ; OP-SYMBOL is a symbol describing the operation performed (e.g.
517 ; `compress'). It is used with `dired-mark-pop-up' to prompt the user
518 ; (e.g. with `Compress * [2 files]? ') and to display errors (e.g.
519 ; `Failed to compress 1 of 2 files - type W to see why ("foo")')
521 ; SHOW-PROGRESS if non-nil means redisplay dired after each file."
522 (if (dired-mark-confirm op-symbol arg)
523 (let* ((total-list;; all of FUN's return values
524 (dired-map-over-marks (funcall fun) arg show-progress))
525 (total (length total-list))
526 (failures (delq nil total-list))
527 (count (length failures))
528 (string (if (eq op-symbol 'compress) "Compress or uncompress"
529 (capitalize (symbol-name op-symbol)))))
530 (if (not failures)
531 (message "%s: %d file%s."
532 string total (dired-plural-s total))
533 ;; end this bunch of errors:
534 (dired-log-summary
535 (format "Failed to %s %d of %d file%s"
536 (downcase string) count total (dired-plural-s total))
537 failures)))))
539 (defvar dired-query-alist
540 '((?\y . y) (?\040 . y) ; `y' or SPC means accept once
541 (?n . n) (?\177 . n) ; `n' or DEL skips once
542 (?! . yes) ; `!' accepts rest
543 (?q. no) (?\e . no) ; `q' or ESC skips rest
544 ;; None of these keys quit - use C-g for that.
547 (defun dired-query (qs-var qs-prompt &rest qs-args)
548 ;; Query user and return nil or t.
549 ;; Store answer in symbol VAR (which must initially be bound to nil).
550 ;; Format PROMPT with ARGS.
551 ;; Binding variable help-form will help the user who types the help key.
552 (let* ((char (symbol-value qs-var))
553 (action (cdr (assoc char dired-query-alist))))
554 (cond ((eq 'yes action)
555 t) ; accept, and don't ask again
556 ((eq 'no action)
557 nil) ; skip, and don't ask again
558 (t;; no lasting effects from last time we asked - ask now
559 (let ((qprompt (concat qs-prompt
560 (if help-form
561 (format " [Type yn!q or %s] "
562 (key-description
563 (char-to-string help-char)))
564 " [Type y, n, q or !] ")))
565 result elt)
566 ;; Actually it looks nicer without cursor-in-echo-area - you can
567 ;; look at the dired buffer instead of at the prompt to decide.
568 (apply 'message qprompt qs-args)
569 (setq char (set qs-var (read-char)))
570 (while (not (setq elt (assoc char dired-query-alist)))
571 (message "Invalid char - type %c for help." help-char)
572 (ding)
573 (sit-for 1)
574 (apply 'message qprompt qs-args)
575 (setq char (set qs-var (read-char))))
576 (memq (cdr elt) '(t y yes)))))))
578 ;;;###autoload
579 (defun dired-do-compress (&optional arg)
580 "Compress or uncompress marked (or next ARG) files."
581 (interactive "P")
582 (dired-map-over-marks-check (function dired-compress) arg 'compress t))
584 ;; Commands for Emacs Lisp files - load and byte compile
586 (defun dired-byte-compile ()
587 ;; Return nil for success, offending file name else.
588 (let* ((filename (dired-get-filename))
589 (elc-file
590 (if (eq system-type 'vax-vms)
591 (concat (substring filename 0 (string-match ";" filename)) "c")
592 (concat filename "c")))
593 buffer-read-only failure)
594 (condition-case err
595 (save-excursion (byte-compile-file filename))
596 (error
597 (setq failure err)))
598 (if failure
599 (progn
600 (dired-log "Byte compile error for %s:\n%s\n" filename failure)
601 (dired-make-relative filename))
602 (dired-remove-file elc-file)
603 (forward-line) ; insert .elc after its .el file
604 (dired-add-file elc-file)
605 nil)))
607 ;;;###autoload
608 (defun dired-do-byte-compile (&optional arg)
609 "Byte compile marked (or next ARG) Emacs Lisp files."
610 (interactive "P")
611 (dired-map-over-marks-check (function dired-byte-compile) arg 'byte-compile t))
613 (defun dired-load ()
614 ;; Return nil for success, offending file name else.
615 (let ((file (dired-get-filename)) failure)
616 (condition-case err
617 (load file nil nil t)
618 (error (setq failure err)))
619 (if (not failure)
621 (dired-log "Load error for %s:\n%s\n" file failure)
622 (dired-make-relative file))))
624 ;;;###autoload
625 (defun dired-do-load (&optional arg)
626 "Load the marked (or next ARG) Emacs Lisp files."
627 (interactive "P")
628 (dired-map-over-marks-check (function dired-load) arg 'load t))
630 ;;;###autoload
631 (defun dired-do-redisplay (&optional arg test-for-subdir)
632 "Redisplay all marked (or next ARG) files.
633 If on a subdir line, redisplay that subdirectory. In that case,
634 a prefix arg lets you edit the `ls' switches used for the new listing."
635 ;; Moves point if the next ARG files are redisplayed.
636 (interactive "P\np")
637 (if (and test-for-subdir (dired-get-subdir))
638 (dired-insert-subdir
639 (dired-get-subdir)
640 (if arg (read-string "Switches for listing: " dired-actual-switches)))
641 (message "Redisplaying...")
642 ;; message much faster than making dired-map-over-marks show progress
643 (dired-map-over-marks (let ((fname (dired-get-filename)))
644 (message "Redisplaying... %s" fname)
645 (dired-update-file-line fname))
646 arg)
647 (dired-move-to-filename)
648 (message "Redisplaying...done")))
650 (defun dired-update-file-line (file)
651 ;; Delete the current line, and insert an entry for FILE.
652 ;; If FILE is nil, then just delete the current line.
653 ;; Keeps any marks that may be present in column one (doing this
654 ;; here is faster than with dired-add-entry's optional arg).
655 ;; Does not update other dired buffers. Use dired-relist-entry for that.
656 (beginning-of-line)
657 (let ((char (following-char)) (opoint (point))
658 (buffer-read-only))
659 (delete-region (point) (progn (forward-line 1) (point)))
660 (if file
661 (progn
662 (dired-add-entry file)
663 ;; Replace space by old marker without moving point.
664 ;; Faster than goto+insdel inside a save-excursion?
665 (subst-char-in-region opoint (1+ opoint) ?\040 char))))
666 (dired-move-to-filename))
668 (defun dired-fun-in-all-buffers (directory fun &rest args)
669 ;; In all buffers dired'ing DIRECTORY, run FUN with ARGS.
670 ;; Return list of buffers where FUN succeeded (i.e., returned non-nil).
671 (let ((buf-list (dired-buffers-for-dir directory))
672 (obuf (current-buffer))
673 buf success-list)
674 (while buf-list
675 (setq buf (car buf-list)
676 buf-list (cdr buf-list))
677 (unwind-protect
678 (progn
679 (set-buffer buf)
680 (if (apply fun args)
681 (setq success-list (cons (buffer-name buf) success-list))))
682 (set-buffer obuf)))
683 success-list))
685 (defun dired-add-file (filename &optional marker-char)
686 (dired-fun-in-all-buffers
687 (file-name-directory filename)
688 (function dired-add-entry) filename marker-char))
690 (defun dired-add-entry (filename &optional marker-char)
691 ;; Add a new entry for FILENAME, optionally marking it
692 ;; with MARKER-CHAR (a character, else dired-marker-char is used).
693 ;; Note that this adds the entry `out of order' if files sorted by
694 ;; time, etc.
695 ;; At least this version inserts in the right subdirectory (if present).
696 ;; And it skips "." or ".." (see `dired-trivial-filenames').
697 ;; Hidden subdirs are exposed if a file is added there.
698 (setq filename (directory-file-name filename))
699 ;; Entry is always for files, even if they happen to also be directories
700 (let ((opoint (point))
701 (cur-dir (dired-current-directory))
702 (directory (file-name-directory filename))
703 reason)
704 (setq filename (file-name-nondirectory filename)
705 reason
706 (catch 'not-found
707 (if (string= directory cur-dir)
708 (progn
709 (skip-chars-forward "^\r\n")
710 (if (eq (following-char) ?\r)
711 (dired-unhide-subdir))
712 ;; We are already where we should be, except when
713 ;; point is before the subdir line or its total line.
714 (let ((p (dired-after-subdir-garbage cur-dir)))
715 (if (< (point) p)
716 (goto-char p))))
717 ;; else try to find correct place to insert
718 (if (dired-goto-subdir directory)
719 (progn;; unhide if necessary
720 (if (looking-at "\r");; point is at end of subdir line
721 (dired-unhide-subdir))
722 ;; found - skip subdir and `total' line
723 ;; and uninteresting files like . and ..
724 ;; This better not moves into the next subdir!
725 (dired-goto-next-nontrivial-file))
726 ;; not found
727 (throw 'not-found "Subdir not found")))
728 ;; found and point is at The Right Place:
729 (let (buffer-read-only)
730 (beginning-of-line)
731 (dired-add-entry-do-indentation marker-char)
732 ;; don't expand `.' !
733 (insert-directory (dired-make-absolute filename directory)
734 (concat dired-actual-switches "d"))
735 (forward-line -1)
736 ;; We want to have the non-directory part, only:
737 (let* ((beg (dired-move-to-filename t)) ; error for strange output
738 (end (dired-move-to-end-of-filename)))
739 (setq filename (buffer-substring beg end))
740 (delete-region beg end)
741 (insert (file-name-nondirectory filename)))
742 (if dired-after-readin-hook;; the subdir-alist is not affected...
743 (save-excursion;; ...so we can run it right now:
744 (save-restriction
745 (beginning-of-line)
746 (narrow-to-region (point) (save-excursion
747 (forward-line 1) (point)))
748 (run-hooks 'dired-after-readin-hook))))
749 (dired-move-to-filename))
750 ;; return nil if all went well
751 nil))
752 (if reason ; don't move away on failure
753 (goto-char opoint))
754 (not reason))) ; return t on succes, nil else
756 ;; This is a separate function for the sake of nested dired format.
757 (defun dired-add-entry-do-indentation (marker-char)
758 ;; two spaces or a marker plus a space:
759 (insert (if marker-char
760 (if (integerp marker-char) marker-char dired-marker-char)
761 ?\040)
762 ?\040))
764 (defun dired-after-subdir-garbage (dir)
765 ;; Return pos of first file line of DIR, skipping header and total
766 ;; or wildcard lines.
767 ;; Important: never moves into the next subdir.
768 ;; DIR is assumed to be unhidden.
769 ;; Will probably be redefined for VMS etc.
770 (save-excursion
771 (or (dired-goto-subdir dir) (error "This cannot happen"))
772 (forward-line 1)
773 (while (and (not (eolp)) ; don't cross subdir boundary
774 (not (dired-move-to-filename)))
775 (forward-line 1))
776 (point)))
778 (defun dired-remove-file (file)
779 (dired-fun-in-all-buffers
780 (file-name-directory file) (function dired-remove-entry) file))
782 (defun dired-remove-entry (file)
783 (save-excursion
784 (and (dired-goto-file file)
785 (let (buffer-read-only)
786 (delete-region (progn (beginning-of-line) (point))
787 (save-excursion (forward-line 1) (point)))))))
789 (defun dired-relist-file (file)
790 (dired-fun-in-all-buffers (file-name-directory file)
791 (function dired-relist-entry) file))
793 (defun dired-relist-entry (file)
794 ;; Relist the line for FILE, or just add it if it did not exist.
795 ;; FILE must be an absolute pathname.
796 (let (buffer-read-only marker)
797 ;; If cursor is already on FILE's line delete-region will cause
798 ;; save-excursion to fail because of floating makers,
799 ;; moving point to beginning of line. Sigh.
800 (save-excursion
801 (and (dired-goto-file file)
802 (delete-region (progn (beginning-of-line)
803 (setq marker (following-char))
804 (point))
805 (save-excursion (forward-line 1) (point))))
806 (setq file (directory-file-name file))
807 (dired-add-entry file (if (eq ?\040 marker) nil marker)))))
809 ;;; Copy, move/rename, making hard and symbolic links
811 (defvar dired-backup-overwrite nil
812 "*Non-nil if Dired should ask about making backups before overwriting files.
813 Special value `always' suppresses confirmation.")
815 (defvar dired-overwrite-confirmed)
817 (defun dired-handle-overwrite (to)
818 ;; Save old version of a to be overwritten file TO.
819 ;; `dired-overwrite-confirmed' and `overwrite-backup-query' are fluid vars
820 ;; from dired-create-files.
821 (if (and dired-backup-overwrite
822 dired-overwrite-confirmed
823 (or (eq 'always dired-backup-overwrite)
824 (dired-query 'overwrite-backup-query
825 (format "Make backup for existing file `%s'? " to))))
826 (let ((backup (car (find-backup-file-name to))))
827 (rename-file to backup 0) ; confirm overwrite of old backup
828 (dired-relist-entry backup))))
830 (defun dired-copy-file (from to ok-flag)
831 (dired-handle-overwrite to)
832 (copy-file from to ok-flag dired-copy-preserve-time))
834 (defun dired-rename-file (from to ok-flag)
835 (dired-handle-overwrite to)
836 (rename-file from to ok-flag) ; error is caught in -create-files
837 ;; Silently rename the visited file of any buffer visiting this file.
838 (and (get-file-buffer from)
839 (save-excursion
840 (set-buffer (get-file-buffer from))
841 (let ((modflag (buffer-modified-p)))
842 (set-visited-file-name to)
843 (set-buffer-modified-p modflag))))
844 (dired-remove-file from)
845 ;; See if it's an inserted subdir, and rename that, too.
846 (dired-rename-subdir from to))
848 (defun dired-rename-subdir (from-dir to-dir)
849 (setq from-dir (file-name-as-directory from-dir)
850 to-dir (file-name-as-directory to-dir))
851 (dired-fun-in-all-buffers from-dir
852 (function dired-rename-subdir-1) from-dir to-dir)
853 ;; Update visited file name of all affected buffers
854 (let ((blist (buffer-list)))
855 (while blist
856 (save-excursion
857 (set-buffer (car blist))
858 (if (and buffer-file-name
859 (dired-in-this-tree buffer-file-name from-dir))
860 (let ((modflag (buffer-modified-p))
861 (to-file (dired-replace-in-string
862 (concat "^" (regexp-quote from-dir))
863 to-dir
864 buffer-file-name)))
865 (set-visited-file-name to-file)
866 (set-buffer-modified-p modflag))))
867 (setq blist (cdr blist)))))
869 (defun dired-rename-subdir-1 (dir to)
870 ;; Rename DIR to TO in headerlines and dired-subdir-alist, if DIR or
871 ;; one of its subdirectories is expanded in this buffer.
872 (let ((alist dired-subdir-alist)
873 (elt nil))
874 (while alist
875 (setq elt (car alist)
876 alist (cdr alist))
877 (if (dired-in-this-tree (car elt) dir)
878 ;; ELT's subdir is affected by the rename
879 (dired-rename-subdir-2 elt dir to)))
880 (if (equal dir default-directory)
881 ;; if top level directory was renamed, lots of things have to be
882 ;; updated:
883 (progn
884 (dired-unadvertise dir) ; we no longer dired DIR...
885 (setq default-directory to
886 dired-directory (expand-file-name;; this is correct
887 ;; with and without wildcards
888 (file-name-nondirectory dired-directory)
889 to))
890 (let ((new-name (file-name-nondirectory
891 (directory-file-name dired-directory))))
892 ;; try to rename buffer, but just leave old name if new
893 ;; name would already exist (don't try appending "<%d>")
894 (or (get-buffer new-name)
895 (rename-buffer new-name)))
896 ;; ... we dired TO now:
897 (dired-advertise)))))
899 (defun dired-rename-subdir-2 (elt dir to)
900 ;; Update the headerline and dired-subdir-alist element of directory
901 ;; described by alist-element ELT to reflect the moving of DIR to TO.
902 ;; Thus, ELT describes either DIR itself or a subdir of DIR.
903 (save-excursion
904 (let ((regexp (regexp-quote (directory-file-name dir)))
905 (newtext (directory-file-name to))
906 buffer-read-only)
907 (goto-char (dired-get-subdir-min elt))
908 ;; Update subdir headerline in buffer
909 (if (not (looking-at dired-subdir-regexp))
910 (error "%s not found where expected - dired-subdir-alist broken?"
911 dir)
912 (goto-char (match-beginning 1))
913 (if (re-search-forward regexp (match-end 1) t)
914 (replace-match newtext t t)
915 (error "Expected to find `%s' in headerline of %s" dir (car elt))))
916 ;; Update buffer-local dired-subdir-alist
917 (setcar elt
918 (dired-normalize-subdir
919 (dired-replace-in-string regexp newtext (car elt)))))))
921 ;; Cloning replace-match to work on strings instead of in buffer:
922 ;; The FIXEDCASE parameter of replace-match is not implemented.
923 ;;;###autoload
924 (defun dired-string-replace-match (regexp string newtext
925 &optional literal global)
926 "Replace first match of REGEXP in STRING with NEWTEXT.
927 If it does not match, nil is returned instead of the new string.
928 Optional arg LITERAL means to take NEWTEXT literally.
929 Optional arg GLOBAL means to replace all matches."
930 (if global
931 (let ((result "") (start 0) mb me)
932 (while (string-match regexp string start)
933 (setq mb (match-beginning 0)
934 me (match-end 0)
935 result (concat result
936 (substring string start mb)
937 (if literal
938 newtext
939 (dired-expand-newtext string newtext)))
940 start me))
941 (if mb ; matched at least once
942 (concat result (substring string start))
943 nil))
944 ;; not GLOBAL
945 (if (not (string-match regexp string 0))
947 (concat (substring string 0 (match-beginning 0))
948 (if literal newtext (dired-expand-newtext string newtext))
949 (substring string (match-end 0))))))
951 (defun dired-expand-newtext (string newtext)
952 ;; Expand \& and \1..\9 (referring to STRING) in NEWTEXT, using match data.
953 ;; Note that in Emacs 18 match data are clipped to current buffer
954 ;; size...so the buffer should better not be smaller than STRING.
955 (let ((pos 0)
956 (len (length newtext))
957 (expanded-newtext ""))
958 (while (< pos len)
959 (setq expanded-newtext
960 (concat expanded-newtext
961 (let ((c (aref newtext pos)))
962 (if (= ?\\ c)
963 (cond ((= ?\& (setq c
964 (aref newtext
965 (setq pos (1+ pos)))))
966 (substring string
967 (match-beginning 0)
968 (match-end 0)))
969 ((and (>= c ?1) (<= c ?9))
970 ;; return empty string if N'th
971 ;; sub-regexp did not match:
972 (let ((n (- c ?0)))
973 (if (match-beginning n)
974 (substring string
975 (match-beginning n)
976 (match-end n))
977 "")))
979 (char-to-string c)))
980 (char-to-string c)))))
981 (setq pos (1+ pos)))
982 expanded-newtext))
984 ;; The basic function for half a dozen variations on cp/mv/ln/ln -s.
985 (defun dired-create-files (file-creator operation fn-list name-constructor
986 &optional marker-char)
988 ;; Create a new file for each from a list of existing files. The user
989 ;; is queried, dired buffers are updated, and at the end a success or
990 ;; failure message is displayed
992 ;; FILE-CREATOR must accept three args: oldfile newfile ok-if-already-exists
994 ;; It is called for each file and must create newfile, the entry of
995 ;; which will be added. The user will be queried if the file already
996 ;; exists. If oldfile is removed by FILE-CREATOR (i.e, it is a
997 ;; rename), it is FILE-CREATOR's responsibility to update dired
998 ;; buffers. FILE-CREATOR must abort by signalling a file-error if it
999 ;; could not create newfile. The error is caught and logged.
1001 ;; OPERATION (a capitalized string, e.g. `Copy') describes the
1002 ;; operation performed. It is used for error logging.
1004 ;; FN-LIST is the list of files to copy (full absolute pathnames).
1006 ;; NAME-CONSTRUCTOR returns a newfile for every oldfile, or nil to
1007 ;; skip. If it skips files for other reasons than a direct user
1008 ;; query, it is supposed to tell why (using dired-log).
1010 ;; Optional MARKER-CHAR is a character with which to mark every
1011 ;; newfile's entry, or t to use the current marker character if the
1012 ;; oldfile was marked.
1014 (let (failures skipped (success-count 0) (total (length fn-list)))
1015 (let (to overwrite-query
1016 overwrite-backup-query) ; for dired-handle-overwrite
1017 (mapcar
1018 (function
1019 (lambda (from)
1020 (setq to (funcall name-constructor from))
1021 (if (equal to from)
1022 (progn
1023 (setq to nil)
1024 (dired-log "Cannot %s to same file: %s\n"
1025 (downcase operation) from)))
1026 (if (not to)
1027 (setq skipped (cons (dired-make-relative from) skipped))
1028 (let* ((overwrite (file-exists-p to))
1029 (dired-overwrite-confirmed ; for dired-handle-overwrite
1030 (and overwrite
1031 (let ((help-form '(format "\
1032 Type SPC or `y' to overwrite file `%s',
1033 DEL or `n' to skip to next,
1034 ESC or `q' to not overwrite any of the remaining files,
1035 `!' to overwrite all remaining files with no more questions." to)))
1036 (dired-query 'overwrite-query
1037 "Overwrite `%s'?" to))))
1038 ;; must determine if FROM is marked before file-creator
1039 ;; gets a chance to delete it (in case of a move).
1040 (actual-marker-char
1041 (cond ((integerp marker-char) marker-char)
1042 (marker-char (dired-file-marker from)) ; slow
1043 (t nil))))
1044 (condition-case err
1045 (progn
1046 (funcall file-creator from to dired-overwrite-confirmed)
1047 (if overwrite
1048 ;; If we get here, file-creator hasn't been aborted
1049 ;; and the old entry (if any) has to be deleted
1050 ;; before adding the new entry.
1051 (dired-remove-file to))
1052 (setq success-count (1+ success-count))
1053 (message "%s: %d of %d" operation success-count total)
1054 (dired-add-file to actual-marker-char))
1055 (file-error ; FILE-CREATOR aborted
1056 (progn
1057 (setq failures (cons (dired-make-relative from) failures))
1058 (dired-log "%s `%s' to `%s' failed:\n%s\n"
1059 operation from to err))))))))
1060 fn-list))
1061 (cond
1062 (failures
1063 (dired-log-summary
1064 (format "%s failed for %d of %d file%s"
1065 operation (length failures) total
1066 (dired-plural-s total))
1067 failures))
1068 (skipped
1069 (dired-log-summary
1070 (format "%s: %d of %d file%s skipped"
1071 operation (length skipped) total
1072 (dired-plural-s total))
1073 skipped))
1075 (message "%s: %s file%s"
1076 operation success-count (dired-plural-s success-count)))))
1077 (dired-move-to-filename))
1079 (defun dired-do-create-files (op-symbol file-creator operation arg
1080 &optional marker-char op1
1081 how-to)
1082 ;; Create a new file for each marked file.
1083 ;; Prompts user for target, which is a directory in which to create
1084 ;; the new files. Target may be a plain file if only one marked
1085 ;; file exists.
1086 ;; OP-SYMBOL is the symbol for the operation. Function `dired-mark-pop-up'
1087 ;; will determine wether pop-ups are appropriate for this OP-SYMBOL.
1088 ;; FILE-CREATOR and OPERATION as in dired-create-files.
1089 ;; ARG as in dired-get-marked-files.
1090 ;; Optional arg OP1 is an alternate form for OPERATION if there is
1091 ;; only one file.
1092 ;; Optional arg MARKER-CHAR as in dired-create-files.
1093 ;; Optional arg HOW-TO determines how to treat target:
1094 ;; If HOW-TO is not given (or nil), and target is a directory, the
1095 ;; file(s) are created inside the target directory. If target
1096 ;; is not a directory, there must be exactly one marked file,
1097 ;; else error.
1098 ;; If HOW-TO is t, then target is not modified. There must be
1099 ;; exactly one marked file, else error.
1100 ;; Else HOW-TO is assumed to be a function of one argument, target,
1101 ;; that looks at target and returns a value for the into-dir
1102 ;; variable. The function dired-into-dir-with-symlinks is provided
1103 ;; for the case (common when creating symlinks) that symbolic
1104 ;; links to directories are not to be considered as directories
1105 ;; (as file-directory-p would if HOW-TO had been nil).
1106 (or op1 (setq op1 operation))
1107 (let* ((fn-list (dired-get-marked-files nil arg))
1108 (fn-count (length fn-list))
1109 (target (expand-file-name
1110 (dired-mark-read-file-name
1111 (concat (if (= 1 fn-count) op1 operation) " %s to: ")
1112 (dired-dwim-target-directory)
1113 op-symbol arg (mapcar (function dired-make-relative) fn-list))))
1114 (into-dir (cond ((null how-to) (file-directory-p target))
1115 ((eq how-to t) nil)
1116 (t (funcall how-to target)))))
1117 (if (and (> fn-count 1)
1118 (not into-dir))
1119 (error "Marked %s: target must be a directory: %s" operation target))
1120 ;; rename-file bombs when moving directories unless we do this:
1121 (or into-dir (setq target (directory-file-name target)))
1122 (dired-create-files
1123 file-creator operation fn-list
1124 (if into-dir ; target is a directory
1125 ;; This function uses fluid vars into-dir and target when called
1126 ;; inside dired-create-files:
1127 (function (lambda (from)
1128 (expand-file-name (file-name-nondirectory from) target)))
1129 (function (lambda (from) target)))
1130 marker-char)))
1132 ;; Read arguments for a marked-files command that wants a file name,
1133 ;; perhaps popping up the list of marked files.
1134 ;; ARG is the prefix arg and indicates whether the files came from
1135 ;; marks (ARG=nil) or a repeat factor (integerp ARG).
1136 ;; If the current file was used, the list has but one element and ARG
1137 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)).
1139 (defun dired-mark-read-file-name (prompt dir op-symbol arg files)
1140 (dired-mark-pop-up
1141 nil op-symbol files
1142 (function read-file-name)
1143 (format prompt (dired-mark-prompt arg files)) dir))
1145 (defun dired-dwim-target-directory ()
1146 ;; Try to guess which target directory the user may want.
1147 ;; If there is a dired buffer displayed in the next window, use
1148 ;; its current subdir, else use current subdir of this dired buffer.
1149 (let ((this-dir (and (eq major-mode 'dired-mode)
1150 (dired-current-directory))))
1151 ;; non-dired buffer may want to profit from this function, e.g. vm-uudecode
1152 (if dired-dwim-target
1153 (let* ((other-buf (window-buffer (next-window)))
1154 (other-dir (save-excursion
1155 (set-buffer other-buf)
1156 (and (eq major-mode 'dired-mode)
1157 (dired-current-directory)))))
1158 (or other-dir this-dir))
1159 this-dir)))
1161 ;;;###autoload
1162 (defun dired-create-directory (directory)
1163 "Create a directory called DIRECTORY."
1164 (interactive
1165 (list (read-file-name "Create directory: " (dired-current-directory))))
1166 (let ((expanded (directory-file-name (expand-file-name directory))))
1167 (make-directory expanded)
1168 (dired-add-file expanded)
1169 (dired-move-to-filename)))
1171 (defun dired-into-dir-with-symlinks (target)
1172 (and (file-directory-p target)
1173 (not (file-symlink-p target))))
1174 ;; This may not always be what you want, especially if target is your
1175 ;; home directory and it happens to be a symbolic link, as is often the
1176 ;; case with NFS and automounters. Or if you want to make symlinks
1177 ;; into directories that themselves are only symlinks, also quite
1178 ;; common.
1180 ;; So we don't use this function as value for HOW-TO in
1181 ;; dired-do-symlink, which has the minor disadvantage of
1182 ;; making links *into* a symlinked-dir, when you really wanted to
1183 ;; *overwrite* that symlink. In that (rare, I guess) case, you'll
1184 ;; just have to remove that symlink by hand before making your marked
1185 ;; symlinks.
1187 ;;;###autoload
1188 (defun dired-do-copy (&optional arg)
1189 "Copy all marked (or next ARG) files, or copy the current file.
1190 This normally preserves the last-modified date when copying.
1191 When operating on just the current file, you specify the new name.
1192 When operating on multiple or marked files, you specify a directory
1193 and new symbolic links are made in that directory
1194 with the same names that the files currently have."
1195 (interactive "P")
1196 (dired-do-create-files 'copy (function dired-copy-file)
1197 (if dired-copy-preserve-time "Copy [-p]" "Copy")
1198 arg dired-keep-marker-copy))
1200 ;;;###autoload
1201 (defun dired-do-symlink (&optional arg)
1202 "Make symbolic links to current file or all marked (or next ARG) files.
1203 When operating on just the current file, you specify the new name.
1204 When operating on multiple or marked files, you specify a directory
1205 and new symbolic links are made in that directory
1206 with the same names that the files currently have."
1207 (interactive "P")
1208 (dired-do-create-files 'symlink (function make-symbolic-link)
1209 "Symlink" arg dired-keep-marker-symlink))
1211 ;;;###autoload
1212 (defun dired-do-hardlink (&optional arg)
1213 "Add names (hard links) current file or all marked (or next ARG) files.
1214 When operating on just the current file, you specify the new name.
1215 When operating on multiple or marked files, you specify a directory
1216 and new hard links are made in that directory
1217 with the same names that the files currently have."
1218 (interactive "P")
1219 (dired-do-create-files 'hardlink (function add-name-to-file)
1220 "Hardlink" arg dired-keep-marker-hardlink))
1222 ;;;###autoload
1223 (defun dired-do-rename (&optional arg)
1224 "Rename current file or all marked (or next ARG) files.
1225 When renaming just the current file, you specify the new name.
1226 When renaming multiple or marked files, you specify a directory."
1227 (interactive "P")
1228 (dired-do-create-files 'move (function dired-rename-file)
1229 "Move" arg dired-keep-marker-rename "Rename"))
1230 ;;;###end dired-cp.el
1232 ;;; 5K
1233 ;;;###begin dired-re.el
1234 (defun dired-do-create-files-regexp
1235 (file-creator operation arg regexp newname &optional whole-path marker-char)
1236 ;; Create a new file for each marked file using regexps.
1237 ;; FILE-CREATOR and OPERATION as in dired-create-files.
1238 ;; ARG as in dired-get-marked-files.
1239 ;; Matches each marked file against REGEXP and constructs the new
1240 ;; filename from NEWNAME (like in function replace-match).
1241 ;; Optional arg WHOLE-PATH means match/replace the whole pathname
1242 ;; instead of only the non-directory part of the file.
1243 ;; Optional arg MARKER-CHAR as in dired-create-files.
1244 (let* ((fn-list (dired-get-marked-files nil arg))
1245 (fn-count (length fn-list))
1246 (operation-prompt (concat operation " `%s' to `%s'?"))
1247 (rename-regexp-help-form (format "\
1248 Type SPC or `y' to %s one match, DEL or `n' to skip to next,
1249 `!' to %s all remaining matches with no more questions."
1250 (downcase operation)
1251 (downcase operation)))
1252 (regexp-name-constructor
1253 ;; Function to construct new filename using REGEXP and NEWNAME:
1254 (if whole-path ; easy (but rare) case
1255 (function
1256 (lambda (from)
1257 (let ((to (dired-string-replace-match regexp from newname))
1258 ;; must bind help-form directly around call to
1259 ;; dired-query
1260 (help-form rename-regexp-help-form))
1261 (if to
1262 (and (dired-query 'rename-regexp-query
1263 operation-prompt
1264 from
1267 (dired-log "%s: %s did not match regexp %s\n"
1268 operation from regexp)))))
1269 ;; not whole-path, replace non-directory part only
1270 (function
1271 (lambda (from)
1272 (let* ((new (dired-string-replace-match
1273 regexp (file-name-nondirectory from) newname))
1274 (to (and new ; nil means there was no match
1275 (expand-file-name new
1276 (file-name-directory from))))
1277 (help-form rename-regexp-help-form))
1278 (if to
1279 (and (dired-query 'rename-regexp-query
1280 operation-prompt
1281 (dired-make-relative from)
1282 (dired-make-relative to))
1284 (dired-log "%s: %s did not match regexp %s\n"
1285 operation (file-name-nondirectory from) regexp)))))))
1286 rename-regexp-query)
1287 (dired-create-files
1288 file-creator operation fn-list regexp-name-constructor marker-char)))
1290 (defun dired-mark-read-regexp (operation)
1291 ;; Prompt user about performing OPERATION.
1292 ;; Read and return list of: regexp newname arg whole-path.
1293 (let* ((whole-path
1294 (equal 0 (prefix-numeric-value current-prefix-arg)))
1295 (arg
1296 (if whole-path nil current-prefix-arg))
1297 (regexp
1298 (dired-read-regexp
1299 (concat (if whole-path "Path " "") operation " from (regexp): ")))
1300 (newname
1301 (read-string
1302 (concat (if whole-path "Path " "") operation " " regexp " to: "))))
1303 (list regexp newname arg whole-path)))
1305 ;;;###autoload
1306 (defun dired-do-rename-regexp (regexp newname &optional arg whole-path)
1307 "Rename marked files containing REGEXP to NEWNAME.
1308 As each match is found, the user must type a character saying
1309 what to do with it. For directions, type \\[help-command] at that time.
1310 NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
1311 REGEXP defaults to the last regexp used.
1312 With a zero prefix arg, renaming by regexp affects the complete
1313 pathname - usually only the non-directory part of file names is used
1314 and changed."
1315 (interactive (dired-mark-read-regexp "Rename"))
1316 (dired-do-create-files-regexp
1317 (function dired-rename-file)
1318 "Rename" arg regexp newname whole-path dired-keep-marker-rename))
1320 ;;;###autoload
1321 (defun dired-do-copy-regexp (regexp newname &optional arg whole-path)
1322 "Copy all marked files containing REGEXP to NEWNAME.
1323 See function `dired-rename-regexp' for more info."
1324 (interactive (dired-mark-read-regexp "Copy"))
1325 (dired-do-create-files-regexp
1326 (function dired-copy-file)
1327 (if dired-copy-preserve-time "Copy [-p]" "Copy")
1328 arg regexp newname whole-path dired-keep-marker-copy))
1330 ;;;###autoload
1331 (defun dired-do-hardlink-regexp (regexp newname &optional arg whole-path)
1332 "Hardlink all marked files containing REGEXP to NEWNAME.
1333 See function `dired-rename-regexp' for more info."
1334 (interactive (dired-mark-read-regexp "HardLink"))
1335 (dired-do-create-files-regexp
1336 (function add-name-to-file)
1337 "HardLink" arg regexp newname whole-path dired-keep-marker-hardlink))
1339 ;;;###autoload
1340 (defun dired-do-symlink-regexp (regexp newname &optional arg whole-path)
1341 "Symlink all marked files containing REGEXP to NEWNAME.
1342 See function `dired-rename-regexp' for more info."
1343 (interactive (dired-mark-read-regexp "SymLink"))
1344 (dired-do-create-files-regexp
1345 (function make-symbolic-link)
1346 "SymLink" arg regexp newname whole-path dired-keep-marker-symlink))
1348 (defun dired-create-files-non-directory
1349 (file-creator basename-constructor operation arg)
1350 ;; Perform FILE-CREATOR on the non-directory part of marked files
1351 ;; using function BASENAME-CONSTRUCTOR, with query for each file.
1352 ;; OPERATION like in dired-create-files, ARG as in dired-get-marked-files.
1353 (let (rename-non-directory-query)
1354 (dired-create-files
1355 file-creator
1356 operation
1357 (dired-get-marked-files nil arg)
1358 (function
1359 (lambda (from)
1360 (let ((to (concat (file-name-directory from)
1361 (funcall basename-constructor
1362 (file-name-nondirectory from)))))
1363 (and (let ((help-form (format "\
1364 Type SPC or `y' to %s one file, DEL or `n' to skip to next,
1365 `!' to %s all remaining matches with no more questions."
1366 (downcase operation)
1367 (downcase operation))))
1368 (dired-query 'rename-non-directory-query
1369 (concat operation " `%s' to `%s'")
1370 (dired-make-relative from)
1371 (dired-make-relative to)))
1372 to))))
1373 dired-keep-marker-rename)))
1375 (defun dired-rename-non-directory (basename-constructor operation arg)
1376 (dired-create-files-non-directory
1377 (function dired-rename-file)
1378 basename-constructor operation arg))
1380 ;;;###autoload
1381 (defun dired-upcase (&optional arg)
1382 "Rename all marked (or next ARG) files to upper case."
1383 (interactive "P")
1384 (dired-rename-non-directory (function upcase) "Rename upcase" arg))
1386 ;;;###autoload
1387 (defun dired-downcase (&optional arg)
1388 "Rename all marked (or next ARG) files to lower case."
1389 (interactive "P")
1390 (dired-rename-non-directory (function downcase) "Rename downcase" arg))
1392 ;;;###end dired-re.el
1394 ;;; 13K
1395 ;;;###begin dired-ins.el
1397 ;;;###autoload
1398 (defun dired-maybe-insert-subdir (dirname &optional
1399 switches no-error-if-not-dir-p)
1400 "Insert this subdirectory into the same dired buffer.
1401 If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
1402 else inserts it at its natural place (as `ls -lR' would have done).
1403 With a prefix arg, you may edit the ls switches used for this listing.
1404 You can add `R' to the switches to expand the whole tree starting at
1405 this subdirectory.
1406 This function takes some pains to conform to `ls -lR' output."
1407 (interactive
1408 (list (dired-get-filename)
1409 (if current-prefix-arg
1410 (read-string "Switches for listing: " dired-actual-switches))))
1411 (let ((opoint (point)))
1412 ;; We don't need a marker for opoint as the subdir is always
1413 ;; inserted *after* opoint.
1414 (setq dirname (file-name-as-directory dirname))
1415 (or (and (not switches)
1416 (dired-goto-subdir dirname))
1417 (dired-insert-subdir dirname switches no-error-if-not-dir-p))
1418 ;; Push mark so that it's easy to find back. Do this after the
1419 ;; insert message so that the user sees the `Mark set' message.
1420 (push-mark opoint)))
1422 (defun dired-insert-subdir (dirname &optional switches no-error-if-not-dir-p)
1423 "Insert this subdirectory into the same dired buffer.
1424 If it is already present, overwrites previous entry,
1425 else inserts it at its natural place (as `ls -lR' would have done).
1426 With a prefix arg, you may edit the `ls' switches used for this listing.
1427 You can add `R' to the switches to expand the whole tree starting at
1428 this subdirectory.
1429 This function takes some pains to conform to `ls -lR' output."
1430 ;; NO-ERROR-IF-NOT-DIR-P needed for special filesystems like
1431 ;; Prospero where dired-ls does the right thing, but
1432 ;; file-directory-p has not been redefined.
1433 (interactive
1434 (list (dired-get-filename)
1435 (if current-prefix-arg
1436 (read-string "Switches for listing: " dired-actual-switches))))
1437 (setq dirname (file-name-as-directory (expand-file-name dirname)))
1438 (dired-insert-subdir-validate dirname switches)
1439 (or no-error-if-not-dir-p
1440 (file-directory-p dirname)
1441 (error "Attempt to insert a non-directory: %s" dirname))
1442 (let ((elt (assoc dirname dired-subdir-alist))
1443 switches-have-R mark-alist case-fold-search buffer-read-only)
1444 ;; case-fold-search is nil now, so we can test for capital `R':
1445 (if (setq switches-have-R (and switches (string-match "R" switches)))
1446 ;; avoid duplicated subdirs
1447 (setq mark-alist (dired-kill-tree dirname t)))
1448 (if elt
1449 ;; If subdir is already present, remove it and remember its marks
1450 (setq mark-alist (nconc (dired-insert-subdir-del elt) mark-alist))
1451 (dired-insert-subdir-newpos dirname)) ; else compute new position
1452 (dired-insert-subdir-doupdate
1453 dirname elt (dired-insert-subdir-doinsert dirname switches))
1454 (if switches-have-R (dired-build-subdir-alist))
1455 (dired-initial-position dirname)
1456 (save-excursion (dired-mark-remembered mark-alist))))
1458 ;; This is a separate function for dired-vms.
1459 (defun dired-insert-subdir-validate (dirname &optional switches)
1460 ;; Check that it is valid to insert DIRNAME with SWITCHES.
1461 ;; Signal an error if invalid (e.g. user typed `i' on `..').
1462 (or (dired-in-this-tree dirname default-directory)
1463 (error "%s: not in this directory tree" dirname))
1464 (if switches
1465 (let (case-fold-search)
1466 (mapcar
1467 (function
1468 (lambda (x)
1469 (or (eq (null (string-match x switches))
1470 (null (string-match x dired-actual-switches)))
1471 (error "Can't have dirs with and without -%s switches together"
1472 x))))
1473 ;; all switches that make a difference to dired-get-filename:
1474 '("F" "b")))))
1476 (defun dired-alist-add (dir new-marker)
1477 ;; Add new DIR at NEW-MARKER. Sort alist.
1478 (dired-alist-add-1 dir new-marker)
1479 (dired-alist-sort))
1481 (defun dired-alist-sort ()
1482 ;; Keep the alist sorted on buffer position.
1483 (setq dired-subdir-alist
1484 (sort dired-subdir-alist
1485 (function (lambda (elt1 elt2)
1486 (> (dired-get-subdir-min elt1)
1487 (dired-get-subdir-min elt2)))))))
1489 (defun dired-kill-tree (dirname &optional remember-marks)
1490 ;;"Kill all proper subdirs of DIRNAME, excluding DIRNAME itself.
1491 ;; With optional arg REMEMBER-MARKS, return an alist of marked files."
1492 (interactive "DKill tree below directory: ")
1493 (let ((s-alist dired-subdir-alist) dir m-alist)
1494 (while s-alist
1495 (setq dir (car (car s-alist))
1496 s-alist (cdr s-alist))
1497 (if (and (not (string-equal dir dirname))
1498 (dired-in-this-tree dir dirname)
1499 (dired-goto-subdir dir))
1500 (setq m-alist (nconc (dired-kill-subdir remember-marks) m-alist))))
1501 m-alist))
1503 (defun dired-insert-subdir-newpos (new-dir)
1504 ;; Find pos for new subdir, according to tree order.
1505 ;;(goto-char (point-max))
1506 (let ((alist dired-subdir-alist) elt dir pos new-pos)
1507 (while alist
1508 (setq elt (car alist)
1509 alist (cdr alist)
1510 dir (car elt)
1511 pos (dired-get-subdir-min elt))
1512 (if (dired-tree-lessp dir new-dir)
1513 ;; Insert NEW-DIR after DIR
1514 (setq new-pos (dired-get-subdir-max elt)
1515 alist nil)))
1516 (goto-char new-pos))
1517 ;; want a separating newline between subdirs
1518 (or (eobp)
1519 (forward-line -1))
1520 (insert "\n")
1521 (point))
1523 (defun dired-insert-subdir-del (element)
1524 ;; Erase an already present subdir (given by ELEMENT) from buffer.
1525 ;; Move to that buffer position. Return a mark-alist.
1526 (let ((begin-marker (dired-get-subdir-min element)))
1527 (goto-char begin-marker)
1528 ;; Are at beginning of subdir (and inside it!). Now determine its end:
1529 (goto-char (dired-subdir-max))
1530 (or (eobp);; want a separating newline _between_ subdirs:
1531 (forward-char -1))
1532 (prog1
1533 (dired-remember-marks begin-marker (point))
1534 (delete-region begin-marker (point)))))
1536 (defun dired-insert-subdir-doinsert (dirname switches)
1537 ;; Insert ls output after point and put point on the correct
1538 ;; position for the subdir alist.
1539 ;; Return the boundary of the inserted text (as list of BEG and END).
1540 (let ((begin (point)) end)
1541 (message "Reading directory %s..." dirname)
1542 (let ((dired-actual-switches
1543 (or switches
1544 (dired-replace-in-string "R" "" dired-actual-switches))))
1545 (if (equal dirname (car (car (reverse dired-subdir-alist))))
1546 ;; top level directory may contain wildcards:
1547 (dired-readin-insert dired-directory)
1548 (insert-directory dirname dired-actual-switches nil t)))
1549 (message "Reading directory %s...done" dirname)
1550 (setq end (point-marker))
1551 (indent-rigidly begin end 2)
1552 ;; call dired-insert-headerline afterwards, as under VMS dired-ls
1553 ;; does insert the headerline itself and the insert function just
1554 ;; moves point.
1555 ;; Need a marker for END as this inserts text.
1556 (goto-char begin)
1557 (dired-insert-headerline dirname)
1558 ;; point is now like in dired-build-subdir-alist
1559 (prog1
1560 (list begin (marker-position end))
1561 (set-marker end nil))))
1563 (defun dired-insert-subdir-doupdate (dirname elt beg-end)
1564 ;; Point is at the correct subdir alist position for ELT,
1565 ;; BEG-END is the subdir-region (as list of begin and end).
1566 (if elt ; subdir was already present
1567 ;; update its position (should actually be unchanged)
1568 (set-marker (dired-get-subdir-min elt) (point-marker))
1569 (dired-alist-add dirname (point-marker)))
1570 ;; The hook may depend on the subdir-alist containing the just
1571 ;; inserted subdir, so run it after dired-alist-add:
1572 (if dired-after-readin-hook
1573 (save-excursion
1574 (let ((begin (nth 0 beg-end))
1575 (end (nth 1 beg-end)))
1576 (goto-char begin)
1577 (save-restriction
1578 (narrow-to-region begin end)
1579 ;; hook may add or delete lines, but the subdir boundary
1580 ;; marker floats
1581 (run-hooks 'dired-after-readin-hook))))))
1583 (defun dired-tree-lessp (dir1 dir2)
1584 ;; Lexicographic order on pathname components, like `ls -lR':
1585 ;; DIR1 < DIR2 iff DIR1 comes *before* DIR2 in an `ls -lR' listing,
1586 ;; i.e., iff DIR1 is a (grand)parent dir of DIR2,
1587 ;; or DIR1 and DIR2 are in the same parentdir and their last
1588 ;; components are string-lessp.
1589 ;; Thus ("/usr/" "/usr/bin") and ("/usr/a/" "/usr/b/") are tree-lessp.
1590 ;; string-lessp could arguably be replaced by file-newer-than-file-p
1591 ;; if dired-actual-switches contained `t'.
1592 (setq dir1 (file-name-as-directory dir1)
1593 dir2 (file-name-as-directory dir2))
1594 (let ((components-1 (dired-split "/" dir1))
1595 (components-2 (dired-split "/" dir2)))
1596 (while (and components-1
1597 components-2
1598 (equal (car components-1) (car components-2)))
1599 (setq components-1 (cdr components-1)
1600 components-2 (cdr components-2)))
1601 (let ((c1 (car components-1))
1602 (c2 (car components-2)))
1604 (cond ((and c1 c2)
1605 (string-lessp c1 c2))
1606 ((and (null c1) (null c2))
1607 nil) ; they are equal, not lessp
1608 ((null c1) ; c2 is a subdir of c1: c1<c2
1610 ((null c2) ; c1 is a subdir of c2: c1>c2
1611 nil)
1612 (t (error "This can't happen"))))))
1614 ;; There should be a builtin split function - inverse to mapconcat.
1615 (defun dired-split (pat str &optional limit)
1616 "Splitting on regexp PAT, turn string STR into a list of substrings.
1617 Optional third arg LIMIT (>= 1) is a limit to the length of the
1618 resulting list.
1619 Thus, if SEP is a regexp that only matches itself,
1621 (mapconcat 'identity (dired-split SEP STRING) SEP)
1623 is always equal to STRING."
1624 (let* ((start (string-match pat str))
1625 (result (list (substring str 0 start)))
1626 (count 1)
1627 (end (if start (match-end 0))))
1628 (if end ; else nothing left
1629 (while (and (or (not (integerp limit))
1630 (< count limit))
1631 (string-match pat str end))
1632 (setq start (match-beginning 0)
1633 count (1+ count)
1634 result (cons (substring str end start) result)
1635 end (match-end 0)
1636 start end)
1638 (if (and (or (not (integerp limit))
1639 (< count limit))
1640 end) ; else nothing left
1641 (setq result
1642 (cons (substring str end) result)))
1643 (nreverse result)))
1645 ;;; moving by subdirectories
1647 ;;;###autoload
1648 (defun dired-prev-subdir (arg &optional no-error-if-not-found no-skip)
1649 "Go to previous subdirectory, regardless of level.
1650 When called interactively and not on a subdir line, go to this subdir's line."
1651 ;;(interactive "p")
1652 (interactive
1653 (list (if current-prefix-arg
1654 (prefix-numeric-value current-prefix-arg)
1655 ;; if on subdir start already, don't stay there!
1656 (if (dired-get-subdir) 1 0))))
1657 (dired-next-subdir (- arg) no-error-if-not-found no-skip))
1659 (defun dired-subdir-min ()
1660 (save-excursion
1661 (if (not (dired-prev-subdir 0 t t))
1662 (error "Not in a subdir!")
1663 (point))))
1665 ;;;###autoload
1666 (defun dired-goto-subdir (dir)
1667 "Go to end of header line of DIR in this dired buffer.
1668 Return value of point on success, otherwise return nil.
1669 The next char is either \\n, or \\r if DIR is hidden."
1670 (interactive
1671 (prog1 ; let push-mark display its message
1672 (list (expand-file-name
1673 (completing-read "Goto in situ directory: " ; prompt
1674 dired-subdir-alist ; table
1675 nil ; predicate
1676 t ; require-match
1677 (dired-current-directory))))
1678 (push-mark)))
1679 (setq dir (file-name-as-directory dir))
1680 (let ((elt (assoc dir dired-subdir-alist)))
1681 (and elt
1682 (goto-char (dired-get-subdir-min elt))
1683 ;; dired-subdir-hidden-p and dired-add-entry depend on point being
1684 ;; at either \r or \n after this function succeeds.
1685 (progn (skip-chars-forward "^\r\n")
1686 (point)))))
1688 ;;;###autoload
1689 (defun dired-mark-subdir-files ()
1690 "Mark all files except `.' and `..'."
1691 (interactive "P")
1692 (let ((p-min (dired-subdir-min)))
1693 (dired-mark-files-in-region p-min (dired-subdir-max))))
1695 ;;;###autoload
1696 (defun dired-kill-subdir (&optional remember-marks)
1697 "Remove all lines of current subdirectory.
1698 Lower levels are unaffected."
1699 ;; With optional REMEMBER-MARKS, return a mark-alist.
1700 (interactive)
1701 (let ((beg (dired-subdir-min))
1702 (end (dired-subdir-max))
1703 buffer-read-only cur-dir)
1704 (setq cur-dir (dired-current-directory))
1705 (if (equal cur-dir default-directory)
1706 (error "Attempt to kill top level directory"))
1707 (prog1
1708 (if remember-marks (dired-remember-marks beg end))
1709 (delete-region beg end)
1710 (if (eobp) ; don't leave final blank line
1711 (delete-char -1))
1712 (dired-unsubdir cur-dir))))
1714 (defun dired-unsubdir (dir)
1715 ;; Remove DIR from the alist
1716 (setq dired-subdir-alist
1717 (delq (assoc dir dired-subdir-alist) dired-subdir-alist)))
1719 ;;;###autoload
1720 (defun dired-tree-up (arg)
1721 "Go up ARG levels in the dired tree."
1722 (interactive "p")
1723 (let ((dir (dired-current-directory)))
1724 (while (>= arg 1)
1725 (setq arg (1- arg)
1726 dir (file-name-directory (directory-file-name dir))))
1727 ;;(setq dir (expand-file-name dir))
1728 (or (dired-goto-subdir dir)
1729 (error "Cannot go up to %s - not in this tree." dir))))
1731 ;;;###autoload
1732 (defun dired-tree-down ()
1733 "Go down in the dired tree."
1734 (interactive)
1735 (let ((dir (dired-current-directory)) ; has slash
1736 pos case-fold-search) ; filenames are case sensitive
1737 (let ((rest (reverse dired-subdir-alist)) elt)
1738 (while rest
1739 (setq elt (car rest)
1740 rest (cdr rest))
1741 (if (dired-in-this-tree (directory-file-name (car elt)) dir)
1742 (setq rest nil
1743 pos (dired-goto-subdir (car elt))))))
1744 (if pos
1745 (goto-char pos)
1746 (error "At the bottom"))))
1748 ;;; hiding
1750 (defun dired-unhide-subdir ()
1751 (let (buffer-read-only)
1752 (subst-char-in-region (dired-subdir-min) (dired-subdir-max) ?\r ?\n)))
1754 (defun dired-hide-check ()
1755 (or selective-display
1756 (error "selective-display must be t for subdir hiding to work!")))
1758 (defun dired-subdir-hidden-p (dir)
1759 (and selective-display
1760 (save-excursion
1761 (dired-goto-subdir dir)
1762 (looking-at "\r"))))
1764 ;;;###autoload
1765 (defun dired-hide-subdir (arg)
1766 "Hide or unhide the current subdirectory and move to next directory.
1767 Optional prefix arg is a repeat factor.
1768 Use \\[dired-hide-all] to (un)hide all directories."
1769 (interactive "p")
1770 (dired-hide-check)
1771 (while (>= (setq arg (1- arg)) 0)
1772 (let* ((cur-dir (dired-current-directory))
1773 (hidden-p (dired-subdir-hidden-p cur-dir))
1774 (elt (assoc cur-dir dired-subdir-alist))
1775 (end-pos (1- (dired-get-subdir-max elt)))
1776 buffer-read-only)
1777 ;; keep header line visible, hide rest
1778 (goto-char (dired-get-subdir-min elt))
1779 (skip-chars-forward "^\n\r")
1780 (if hidden-p
1781 (subst-char-in-region (point) end-pos ?\r ?\n)
1782 (subst-char-in-region (point) end-pos ?\n ?\r)))
1783 (dired-next-subdir 1 t)))
1785 ;;;###autoload
1786 (defun dired-hide-all (arg)
1787 "Hide all subdirectories, leaving only their header lines.
1788 If there is already something hidden, make everything visible again.
1789 Use \\[dired-hide-subdir] to (un)hide a particular subdirectory."
1790 (interactive "P")
1791 (dired-hide-check)
1792 (let (buffer-read-only)
1793 (if (save-excursion
1794 (goto-char (point-min))
1795 (search-forward "\r" nil t))
1796 ;; unhide - bombs on \r in filenames
1797 (subst-char-in-region (point-min) (point-max) ?\r ?\n)
1798 ;; hide
1799 (let ((pos (point-max)) ; pos of end of last directory
1800 (alist dired-subdir-alist))
1801 (while alist ; while there are dirs before pos
1802 (subst-char-in-region (dired-get-subdir-min (car alist)) ; pos of prev dir
1803 (save-excursion
1804 (goto-char pos) ; current dir
1805 ;; we're somewhere on current dir's line
1806 (forward-line -1)
1807 (point))
1808 ?\n ?\r)
1809 (setq pos (dired-get-subdir-min (car alist))) ; prev dir gets current dir
1810 (setq alist (cdr alist)))))))
1812 ;;;###end dired-ins.el
1814 ;;; dired-aux.el ends here