annotate lisp/dired/dired-rcs.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;;; dired-rcs.el - RCS support for Tree Dired
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 (defconst dired-rcs-version (substring "!Revision: 1.6 !" 11 -2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 "I don't speak RCS-ese")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Originally written by Sebastian Kremer <sk@thp.uni-koeln.de>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Rewritten by Heiko Muenkel <muenkel@tnt.uni-hannover.de>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; Copyright (C) 1991 by Sebastian Kremer <sk@thp.uni-koeln.de>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; Copyright (C) 1994 by Heiko Muenkel <muenkel@tnt.uni-hannover.de>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; This program is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; the Free Software Foundation; either version 1, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; This program is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; along with this program; if not, write to the Free Software
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;; INSTALLATION ======================================================
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; This will not work with classic (18.xx) Dired, you'll need Tree Dired,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;; available via anonymous ftp from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; ftp.thp.Uni-Koeln.DE[134.95.64.1]:/pub/gnu/emacs/diredall.tar.Z
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; Put this file into your load-path and the following in your ~/.emacs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; (autoload 'dired-rcs-mark-rcs-locked-files "dired-rcs")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; (autoload 'dired-rcs-mark-rcs-files "dired-rcs")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; Put this inside your dired-load-hook:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; (define-key dired-mode-map "," 'dired-rcs-mark-rcs-files)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;; (define-key dired-mode-map "\M-," 'dired-rcs-mark-rcs-locked-files)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (require 'dired)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (defun dired-rcs-mark-rcs-locked-files (&optional unflag-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 "Mark all files that are under RCS control and RCS-locked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 With prefix argument, unflag all those files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 Mentions RCS files for which a working file was not found in this buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Type \\[dired-why] to see them again."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (dired-rcs-mark-rcs-files unflag-p t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (defun dired-rcs-mark-rcs-files (&optional unflag-p locked)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 "Mark all files that are under RCS control.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 With prefix argument, unflag all those files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Mentions RCS files for which a working file was not found in this buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Type \\[dired-why] to see them again."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;; Returns list of failures, or nil on success.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ;; Optional arg LOCKED means just mark RCS-locked files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (message "%s %sRCS controlled files..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (if unflag-p "Unmarking" "Marking")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (if locked "locked " ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (let ((dired-marker-char (if unflag-p ?\ dired-marker-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 rcs-files wf failures count total)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ;; Loop over subdirs to set `rcs-files'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (lambda (dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (or (equal (file-name-nondirectory (directory-file-name dir))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "RCS")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ;; skip inserted RCS subdirs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (setq rcs-files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (append (if locked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;; these two functions from sk's rcs.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (rcs-locked-files dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (rcs-files dir))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 rcs-files)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (mapcar (function car) dired-subdir-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (setq total (length rcs-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (while rcs-files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (setq wf (rcs-working-file (car rcs-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 rcs-files (cdr rcs-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (save-excursion (if (dired-goto-file wf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (dired-mark-file 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (dired-log "RCS working file not found: %s\n" wf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (setq failures (cons (dired-make-relative wf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 failures)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (if (null failures)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (message "%d %sRCS file%s %smarked."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 total
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (if locked "locked " "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (dired-plural-s total)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (if unflag-p "un" ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (setq count (length failures))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (dired-log-summary "RCS working file not found %s" failures)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (message "%d %sRCS file%s: %d %smarked - %d not found %s."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 total
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (if locked "locked " "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (dired-plural-s total) (- total count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (if unflag-p "un" "") count failures))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 failures))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (defun rcs-files (directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 "Return list of RCS data files for all RCS controlled files in DIRECTORY."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (setq directory (file-name-as-directory directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (let ((rcs-dir (file-name-as-directory (expand-file-name "RCS" directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (rcs-files (directory-files directory t ",v$")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (if (file-directory-p rcs-dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (setq rcs-files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (append (directory-files rcs-dir t ",v$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 rcs-files)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 rcs-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (defvar rcs-output-buffer "*RCS-output*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 "If non-nil, buffer name used by function `rcs-get-output-buffer' (q.v.).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 If nil, a new buffer is used each time.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (defun rcs-get-output-buffer (file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 ;; Get a buffer for RCS output for FILE, make it writable and clean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 ;; it up. Return the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ;; The buffer used is named according to variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 ;; `rcs-output-buffer'. If the caller wants to be reentrant, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ;; should let-bind this to nil: a new buffer will be chosen.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (let* ((default-major-mode 'fundamental-mode);; no frills!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (buf (get-buffer-create (or rcs-output-buffer "*RCS-output*"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (if rcs-output-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (setq buf (generate-new-buffer "*RCS-output*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (setq buffer-read-only nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 default-directory (file-name-directory (expand-file-name file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (erase-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (defun rcs-locked-files (directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 "Return list of RCS data file names of all RCS-locked files in DIRECTORY."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (let ((output-buffer (rcs-get-output-buffer directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (rcs-files (rcs-files directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (and rcs-files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (set-buffer output-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (apply (function call-process) "rlog" nil t nil "-L" "-R" rcs-files)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (while (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (setq result (cons (buffer-substring (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (progn (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (1- (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 result)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 result))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (defun rcs-working-file (filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 "Convert an RCS file name to a working file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 That is, convert `...foo,v' and `...RCS/foo,v' to `...foo'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 If FILENAME doesn't end in `,v' it is returned unchanged."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (if (not (string-match ",v$" filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (setq filename (substring filename 0 -2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (let ((dir (file-name-directory filename)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (if (null dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (let ((dir-file (directory-file-name dir)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (if (equal "RCS" (file-name-nondirectory dir-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ;; Working file for ./RCS/foo,v is ./foo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 ;; Don't use expand-file-name as this converts "" -> pwd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 ;; and thus forces a relative FILENAME to be relative to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 ;; the current value of default-directory, which may not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ;; what the caller wants. Besides, we want to change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 ;; FILENAME only as much as necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (concat (file-name-directory dir-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (file-name-nondirectory filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 filename))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (defun dired-do-vc-register (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 "Register the marked (or next ARG) files under version control."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (dired-mark-map-check (function dired-vc-register) arg 'register t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (defun dired-vc-register ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (let ((file (dired-get-filename)) failure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (condition-case err
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (find-file file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (vc-register))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (error (setq failure err)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (if (not failure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (dired-log "Register error for %s:\n%s\n" file failure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (dired-make-relative file))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (provide 'dired-rcs)