(iso-transl-char-map): Add elements for mute-acute, etc.
[emacs.git] / lisp / vc.el
blobbef1b7de5058bf1a41ff69e78a80d6ed9d68a1ba
1 ;;; vc.el --- drive a version-control system from within Emacs
3 ;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6 ;; Maintainer: ttn@netcom.com
7 ;; Version: 5.5 + CVS hacks by ceder@lysator.liu.se made in Jan-Feb 1994.
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 ;;; Commentary:
27 ;; This mode is fully documented in the Emacs user's manual.
29 ;; This was designed and implemented by Eric Raymond <esr@snark.thyrsus.com>.
30 ;; Paul Eggert <eggert@twinsun.com>, Sebastian Kremer <sk@thp.uni-koeln.de>,
31 ;; and Richard Stallman contributed valuable criticism, support, and testing.
33 ;; Supported version-control systems presently include SCCS and RCS;
34 ;; the RCS lock-stealing code doesn't work right unless you use RCS 5.6.2
35 ;; or newer. Currently (January 1994) that is only a beta test release.
37 ;; The RCS code assumes strict locking. You can support the RCS -x option
38 ;; by adding pairs to the vc-master-templates list.
40 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff
41 ;; to be installed somewhere on Emacs's path for executables.
43 ;; If your site uses the ChangeLog convention supported by Emacs, the
44 ;; function vc-comment-to-change-log should prove a useful checkin hook.
46 ;; This code depends on call-process passing back the subprocess exit
47 ;; status. Thus, you need Emacs 18.58 or later to run it. For the
48 ;; vc-directory command to work properly as documented, you need 19.
49 ;; You also need Emacs 19's ring.el.
51 ;; The vc code maintains some internal state in order to reduce expensive
52 ;; version-control operations to a minimum. Some names are only computed
53 ;; once. If you perform version control operations with RCS/SCCS/CVS while
54 ;; vc's back is turned, or move/rename master files while vc is running,
55 ;; vc may get seriously confused. Don't do these things!
57 ;; Developer's notes on some concurrency issues are included at the end of
58 ;; the file.
60 ;;; Code:
62 (require 'vc-hooks)
63 (require 'ring)
64 (eval-when-compile (require 'dired)) ; for dired-map-over-marks macro
66 (if (not (assoc 'vc-parent-buffer minor-mode-alist))
67 (setq minor-mode-alist
68 (cons '(vc-parent-buffer vc-parent-buffer-name)
69 minor-mode-alist)))
71 ;; General customization
73 (defvar vc-default-back-end nil
74 "*Back-end actually used by this interface; may be SCCS or RCS.
75 The value is only computed when needed to avoid an expensive search.")
76 (defvar vc-suppress-confirm nil
77 "*If non-nil, treat user as expert; suppress yes-no prompts on some things.")
78 (defvar vc-keep-workfiles t
79 "*If non-nil, don't delete working files after registering changes.
80 If the back-end is CVS, workfiles are always kept, regardless of the
81 value of this flag.")
82 (defvar vc-initial-comment nil
83 "*Prompt for initial comment when a file is registered.")
84 (defvar vc-command-messages nil
85 "*Display run messages from back-end commands.")
86 (defvar vc-mistrust-permissions 'file-symlink-p
87 "*Don't assume that permissions and ownership track version-control status.")
88 (defvar vc-checkin-switches nil
89 "*Extra switches passed to the checkin program by \\[vc-checkin].")
90 (defvar vc-checkout-switches nil
91 "*Extra switches passed to the checkout program by \\[vc-checkout].")
92 (defvar vc-path
93 (if (file-exists-p "/usr/sccs")
94 '("/usr/sccs") nil)
95 "*List of extra directories to search for version control commands.")
97 (defconst vc-maximum-comment-ring-size 32
98 "Maximum number of saved comments in the comment ring.")
100 ;;; This is duplicated in diff.el.
101 (defvar diff-switches "-c"
102 "*A string or list of strings specifying switches to be be passed to diff.")
104 ;;;###autoload
105 (defvar vc-checkin-hook nil
106 "*List of functions called after a checkin is done. See `run-hooks'.")
108 (defvar vc-make-buffer-writable-hook nil
109 "*List of functions called when a buffer is made writable. See `run-hooks.'
110 This hook is only used when the version control system is CVS. It
111 might be useful for sites who uses locking with CVS, or who uses link
112 farms to gold trees.")
114 ;; Header-insertion hair
116 (defvar vc-header-alist
117 '((SCCS "\%W\%") (RCS "\$Id\$") (CVS "\$Id\$"))
118 "*Header keywords to be inserted when `vc-insert-headers' is executed.")
119 (defvar vc-static-header-alist
120 '(("\\.c$" .
121 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
122 "*Associate static header string templates with file types. A \%s in the
123 template is replaced with the first string associated with the file's
124 version-control type in `vc-header-alist'.")
126 (defvar vc-comment-alist
127 '((nroff-mode ".\\\"" ""))
128 "*Special comment delimiters to be used in generating vc headers only.
129 Add an entry in this list if you need to override the normal comment-start
130 and comment-end variables. This will only be necessary if the mode language
131 is sensitive to blank lines.")
133 ;; Default is to be extra careful for super-user.
134 (defvar vc-checkout-carefully (= (user-uid) 0)
135 "*Non-nil means be extra-careful in checkout.
136 Verify that the file really is not locked
137 and that its contents match what the master file says.")
139 ;; Variables the user doesn't need to know about.
140 (defvar vc-log-entry-mode nil)
141 (defvar vc-log-operation nil)
142 (defvar vc-log-after-operation-hook nil)
143 (defvar vc-checkout-writable-buffer-hook 'vc-checkout-writable-buffer)
144 ;; In a log entry buffer, this is a local variable
145 ;; that points to the buffer for which it was made
146 ;; (either a file, or a VC dired buffer).
147 (defvar vc-parent-buffer nil)
148 (defvar vc-parent-buffer-name nil)
150 (defvar vc-log-file)
151 (defvar vc-log-version)
153 (defconst vc-name-assoc-file "VC-names")
155 (defvar vc-dired-mode nil)
156 (make-variable-buffer-local 'vc-dired-mode)
158 (defvar vc-comment-ring nil)
159 (defvar vc-comment-ring-index nil)
160 (defvar vc-last-comment-match nil)
162 ;; File property caching
164 (defun vc-file-clearprops (file)
165 ;; clear all properties of a given file
166 (setplist (intern file vc-file-prop-obarray) nil))
168 (defun vc-clear-context ()
169 "Clear all cached file properties and the comment ring."
170 (interactive)
171 (fillarray vc-file-prop-obarray nil)
172 ;; Note: there is potential for minor lossage here if there is an open
173 ;; log buffer with a nonzero local value of vc-comment-ring-index.
174 (setq vc-comment-ring nil))
176 ;; Random helper functions
178 (defun vc-registration-error (file)
179 (if file
180 (error "File %s is not under version control" file)
181 (error "Buffer %s is not associated with a file" (buffer-name))))
183 (defvar vc-binary-assoc nil)
185 (defun vc-find-binary (name)
186 "Look for a command anywhere on the subprocess-command search path."
187 (or (cdr (assoc name vc-binary-assoc))
188 (catch 'found
189 (mapcar
190 (function
191 (lambda (s)
192 (if s
193 (let ((full (concat s "/" name)))
194 (if (file-executable-p full)
195 (progn
196 (setq vc-binary-assoc
197 (cons (cons name full) vc-binary-assoc))
198 (throw 'found full)))))))
199 exec-path)
200 nil)))
202 (defun vc-do-command (okstatus command file last &rest flags)
203 "Execute a version-control command, notifying user and checking for errors.
204 The command is successful if its exit status does not exceed OKSTATUS.
205 Output from COMMAND goes to buffer *vc*. The last argument of the command is
206 the master name of FILE if LAST is 'MASTER, or the basename of FILE if LAST is
207 'BASE; this is appended to an optional list of FLAGS."
208 (setq file (expand-file-name file))
209 (if vc-command-messages
210 (message "Running %s on %s..." command file))
211 (let ((obuf (current-buffer)) (camefrom (current-buffer))
212 (squeezed nil)
213 (vc-file (and file (vc-name file)))
214 status)
215 (set-buffer (get-buffer-create "*vc*"))
216 (set (make-local-variable 'vc-parent-buffer) camefrom)
217 (set (make-local-variable 'vc-parent-buffer-name)
218 (concat " from " (buffer-name camefrom)))
220 (erase-buffer)
222 ;; This is so that command arguments typed in the *vc* buffer will
223 ;; have reasonable defaults.
224 (setq default-directory (file-name-directory file))
226 (mapcar
227 (function (lambda (s) (and s (setq squeezed (append squeezed (list s))))))
228 flags)
229 (if (and vc-file (eq last 'MASTER))
230 (setq squeezed (append squeezed (list vc-file))))
231 (if (eq last 'BASE)
232 (setq squeezed (append squeezed (list (file-name-nondirectory file)))))
233 (let ((default-directory (file-name-directory (or file "./")))
234 (exec-path (if vc-path (append exec-path vc-path) exec-path))
235 ;; Add vc-path to PATH for the execution of this command.
236 (process-environment
237 (cons (concat "PATH=" (getenv "PATH")
238 ":" (mapconcat 'identity vc-path ":"))
239 process-environment)))
240 (setq status (apply 'call-process command nil t nil squeezed)))
241 (goto-char (point-max))
242 (forward-line -1)
243 (if (or (not (integerp status)) (< okstatus status))
244 (progn
245 (pop-to-buffer "*vc*")
246 (goto-char (point-min))
247 (shrink-window-if-larger-than-buffer)
248 (error "Running %s...FAILED (%s)" command
249 (if (integerp status)
250 (format "status %d" status)
251 status))
253 (if vc-command-messages
254 (message "Running %s...OK" command))
256 (set-buffer obuf)
257 status)
260 ;;; Save a bit of the text around POSN in the current buffer, to help
261 ;;; us find the corresponding position again later. This works even
262 ;;; if all markers are destroyed or corrupted.
263 (defun vc-position-context (posn)
264 (list posn
265 (buffer-size)
266 (buffer-substring posn
267 (min (point-max) (+ posn 100)))))
269 ;;; Return the position of CONTEXT in the current buffer, or nil if we
270 ;;; couldn't find it.
271 (defun vc-find-position-by-context (context)
272 (let ((context-string (nth 2 context)))
273 (if (equal "" context-string)
274 (point-max)
275 (save-excursion
276 (let ((diff (- (nth 1 context) (buffer-size))))
277 (if (< diff 0) (setq diff (- diff)))
278 (goto-char (nth 0 context))
279 (if (or (search-forward context-string nil t)
280 ;; Can't use search-backward since the match may continue
281 ;; after point.
282 (progn (goto-char (- (point) diff (length context-string)))
283 ;; goto-char doesn't signal an error at
284 ;; beginning of buffer like backward-char would
285 (search-forward context-string nil t)))
286 ;; to beginning of OSTRING
287 (- (point) (length context-string))))))))
289 (defun vc-revert-buffer1 (&optional arg no-confirm)
290 ;; Most of this was shamelessly lifted from Sebastian Kremer's rcs.el mode.
291 ;; Revert buffer, try to keep point and mark where user expects them in spite
292 ;; of changes because of expanded version-control key words.
293 ;; This is quite important since otherwise typeahead won't work as expected.
294 (interactive "P")
295 (widen)
296 (let ((point-context (vc-position-context (point)))
297 ;; Use mark-marker to avoid confusion in transient-mark-mode.
298 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer))
299 (vc-position-context (mark-marker))))
300 ;; Make the right thing happen in transient-mark-mode.
301 (mark-active nil)
302 ;; We may want to reparse the compilation buffer after revert
303 (reparse (and (boundp 'compilation-error-list) ;compile loaded
304 (let ((curbuf (current-buffer)))
305 ;; Construct a list; each elt is nil or a buffer
306 ;; iff that buffer is a compilation output buffer
307 ;; that contains markers into the current buffer.
308 (save-excursion
309 (mapcar (function
310 (lambda (buffer)
311 (set-buffer buffer)
312 (let ((errors (or
313 compilation-old-error-list
314 compilation-error-list))
315 (buffer-error-marked-p nil))
316 (while (and (consp errors)
317 (not buffer-error-marked-p))
318 (and (markerp (cdr (car errors)))
319 (eq buffer
320 (marker-buffer
321 (cdr (car errors))))
322 (setq buffer-error-marked-p t))
323 (setq errors (cdr errors)))
324 (if buffer-error-marked-p buffer))))
325 (buffer-list)))))))
327 ;; the actual revisit
328 (revert-buffer arg no-confirm)
330 ;; Reparse affected compilation buffers.
331 (while reparse
332 (if (car reparse)
333 (save-excursion
334 (set-buffer (car reparse))
335 (let ((compilation-last-buffer (current-buffer)) ;select buffer
336 ;; Record the position in the compilation buffer of
337 ;; the last error next-error went to.
338 (error-pos (marker-position
339 (car (car-safe compilation-error-list)))))
340 ;; Reparse the error messages as far as they were parsed before.
341 (compile-reinitialize-errors '(4) compilation-parsing-end)
342 ;; Move the pointer up to find the error we were at before
343 ;; reparsing. Now next-error should properly go to the next one.
344 (while (and compilation-error-list
345 (/= error-pos (car (car compilation-error-list))))
346 (setq compilation-error-list (cdr compilation-error-list))))))
347 (setq reparse (cdr reparse)))
349 ;; Restore point and mark
350 (let ((new-point (vc-find-position-by-context point-context)))
351 (if new-point (goto-char new-point)))
352 (if mark-context
353 (let ((new-mark (vc-find-position-by-context mark-context)))
354 (if new-mark (set-mark new-mark))))))
357 (defun vc-buffer-sync (&optional not-urgent)
358 ;; Make sure the current buffer and its working file are in sync
359 ;; NOT-URGENT means it is ok to continue if the user says not to save.
360 (if (buffer-modified-p)
361 (if (or vc-suppress-confirm
362 (y-or-n-p (format "Buffer %s modified; save it? " (buffer-name))))
363 (save-buffer)
364 (if not-urgent
366 (error "Aborted")))))
369 (defun vc-workfile-unchanged-p (file &optional want-differences-if-changed)
370 ;; Has the given workfile changed since last checkout?
371 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
372 (lastmod (nth 5 (file-attributes file))))
373 (or (equal checkout-time lastmod)
374 (and (or (not checkout-time) want-differences-if-changed)
375 (let ((unchanged (zerop (vc-backend-diff file nil nil
376 (not want-differences-if-changed)))))
377 ;; 0 stands for an unknown time; it can't match any mod time.
378 (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))
379 unchanged)))))
381 (defun vc-next-action-on-file (file verbose &optional comment)
382 ;;; If comment is specified, it will be used as an admin or checkin comment.
383 (let ((vc-file (vc-name file))
384 (vc-type (vc-backend-deduce file))
385 owner version)
386 (cond
388 ;; if there is no master file corresponding, create one
389 ((not vc-file)
390 (vc-register verbose comment))
392 ;; if there is no lock on the file, assert one and get it
393 ((and (not (eq vc-type 'CVS)) ;There are no locks in CVS.
394 (not (setq owner (vc-locking-user file))))
395 (if (and vc-checkout-carefully
396 (not (vc-workfile-unchanged-p file t)))
397 (if (save-window-excursion
398 (pop-to-buffer "*vc*")
399 (goto-char (point-min))
400 (insert-string (format "Changes to %s since last lock:\n\n"
401 file))
402 (not (beep))
403 (yes-or-no-p
404 (concat "File has unlocked changes, "
405 "claim lock retaining changes? ")))
406 (progn (vc-backend-steal file)
407 (vc-mode-line file))
408 (if (not (yes-or-no-p "Revert to checked-in version, instead? "))
409 (error "Checkout aborted.")
410 (vc-revert-buffer1 t t)
411 (vc-checkout-writable-buffer file))
413 (vc-checkout-writable-buffer file)))
415 ;; a checked-out version exists, but the user may not own the lock
416 ((and (not (eq vc-type 'CVS)) ;There are no locks in CVS.
417 (not (string-equal owner (user-login-name))))
418 (if comment
419 (error "Sorry, you can't steal the lock on %s this way" file))
420 (vc-steal-lock
421 file
422 (and verbose (read-string "Version to steal: "))
423 owner))
425 ;; changes to the master file needs to be merged back into the
426 ;; working file
427 ((and (eq vc-type 'CVS)
428 ;; "0" means "added, but not yet committed"
429 (not (string= (vc-file-getprop file 'vc-your-latest-version) "0"))
430 (progn
431 (vc-fetch-properties file)
432 (not (string= (vc-file-getprop file 'vc-your-latest-version)
433 (vc-file-getprop file 'vc-latest-version)))))
434 (vc-buffer-sync)
435 (if (yes-or-no-p (format "%s is not up-to-date. Merge in changes now? "
436 (buffer-name)))
437 (progn
438 (if (and (buffer-modified-p)
439 (not (yes-or-no-p
440 "Buffer %s modified; merge file on disc anyhow? "
441 (buffer-name))))
442 (error "Merge aborted"))
443 (if (not (zerop (vc-backend-merge-news file)))
444 ;; Overlaps detected - what now? Should use some
445 ;; fancy RCS conflict resolving package, or maybe
446 ;; emerge, but for now, simply warn the user with a
447 ;; message.
448 (message "Conflicts detected!"))
449 (vc-resynch-window file t (not (buffer-modified-p))))
451 (error "%s needs update" (buffer-name))))
453 ((and buffer-read-only (eq vc-type 'CVS))
454 (toggle-read-only)
455 ;; Sites who make link farms to a read-only gold tree (or
456 ;; something similar) can use the hook below to break the
457 ;; sym-link.
458 (run-hooks 'vc-make-buffer-writable-hook))
460 ;; OK, user owns the lock on the file (or we are running CVS)
462 (find-file file)
464 ;; give luser a chance to save before checking in.
465 (vc-buffer-sync)
467 ;; Revert if file is unchanged and buffer is too.
468 ;; If buffer is modified, that means the user just said no
469 ;; to saving it; in that case, don't revert,
470 ;; because the user might intend to save
471 ;; after finishing the log entry.
472 (if (and (vc-workfile-unchanged-p file)
473 (not (buffer-modified-p)))
474 (progn
475 (if (eq vc-type 'CVS)
476 (message "No changes to %s" file)
478 (vc-backend-revert file)
479 ;; DO NOT revert the file without asking the user!
480 (vc-resynch-window file t nil)))
482 ;; user may want to set nonstandard parameters
483 (if verbose
484 (setq version (read-string "New version level: ")))
486 ;; OK, let's do the checkin
487 (vc-checkin file version comment)
488 )))))
490 (defun vc-next-action-dired (file rev comment)
491 ;; We've accepted a log comment, now do a vc-next-action using it on all
492 ;; marked files.
493 (set-buffer vc-parent-buffer)
494 (dired-map-over-marks
495 (save-window-excursion
496 (let ((file (dired-get-filename)))
497 (message "Processing %s..." file)
498 (vc-next-action-on-file file nil comment)
499 (message "Processing %s...done" file)))
500 nil t)
503 ;; Here's the major entry point.
505 ;;;###autoload
506 (defun vc-next-action (verbose)
507 "Do the next logical checkin or checkout operation on the current file.
509 For RCS and SCCS files:
510 If the file is not already registered, this registers it for version
511 control and then retrieves a writable, locked copy for editing.
512 If the file is registered and not locked by anyone, this checks out
513 a writable and locked file ready for editing.
514 If the file is checked out and locked by the calling user, this
515 first checks to see if the file has changed since checkout. If not,
516 it performs a revert.
517 If the file has been changed, this pops up a buffer for entry
518 of a log message; when the message has been entered, it checks in the
519 resulting changes along with the log message as change commentary. If
520 the variable `vc-keep-workfiles' is non-nil (which is its default), a
521 read-only copy of the changed file is left in place afterwards.
522 If the file is registered and locked by someone else, you are given
523 the option to steal the lock.
525 For CVS files:
526 If the file is not already registered, this registers it for version
527 control. This does a \"cvs add\", but no \"cvs commit\".
528 If the file is added but not committed, it is committed.
529 If the file has not been changed, neither in your working area or
530 in the repository, a message is printed and nothing is done.
531 If your working file is changed, but the repository file is
532 unchanged, this pops up a buffer for entry of a log message; when the
533 message has been entered, it checks in the resulting changes along
534 with the logmessage as change commentary. A writable file is retained.
535 If the repository file is changed, you are asked if you want to
536 merge in the changes into your working copy.
538 The following is true regardless of which version control system you
539 are using:
541 If you call this from within a VC dired buffer with no files marked,
542 it will operate on the file in the current line.
543 If you call this from within a VC dired buffer, and one or more
544 files are marked, it will accept a log message and then operate on
545 each one. The log message will be used as a comment for any register
546 or checkin operations, but ignored when doing checkouts. Attempted
547 lock steals will raise an error.
549 For checkin, a prefix argument lets you specify the version number to use."
550 (interactive "P")
551 (catch 'nogo
552 (if vc-dired-mode
553 (let ((files (dired-get-marked-files)))
554 (if (= (length files) 1)
555 (find-file-other-window (car files))
556 (vc-start-entry nil nil nil
557 "Enter a change comment for the marked files."
558 'vc-next-action-dired)
559 (throw 'nogo nil))))
560 (while vc-parent-buffer
561 (pop-to-buffer vc-parent-buffer))
562 (if buffer-file-name
563 (vc-next-action-on-file buffer-file-name verbose)
564 (vc-registration-error nil))))
566 ;;; These functions help the vc-next-action entry point
568 (defun vc-checkout-writable-buffer (&optional file)
569 "Retrieve a writable copy of the latest version of the current buffer's file."
570 (vc-checkout (or file (buffer-file-name)) t)
573 ;;;###autoload
574 (defun vc-register (&optional override comment)
575 "Register the current file into your version-control system."
576 (interactive "P")
577 (let ((master (vc-name buffer-file-name)))
578 (and master (file-exists-p master)
579 (error "This file is already registered"))
580 (and master
581 (not (y-or-n-p "Previous master file has vanished. Make a new one? "))
582 (error "This file is already registered")))
583 ;; Watch out for new buffers of size 0: the corresponding file
584 ;; does not exist yet, even though buffer-modified-p is nil.
585 (if (and (not (buffer-modified-p))
586 (zerop (buffer-size))
587 (not (file-exists-p buffer-file-name)))
588 (set-buffer-modified-p t))
589 (vc-buffer-sync)
590 (vc-admin
591 buffer-file-name
592 (and override
593 (read-string
594 (format "Initial version level for %s: " buffer-file-name))))
597 (defun vc-resynch-window (file &optional keep noquery)
598 ;; If the given file is in the current buffer,
599 ;; either revert on it so we see expanded keyworks,
600 ;; or unvisit it (depending on vc-keep-workfiles)
601 ;; NOQUERY if non-nil inhibits confirmation for reverting.
602 ;; NOQUERY should be t *only* if it is known the only difference
603 ;; between the buffer and the file is due to RCS rather than user editing!
604 (and (string= buffer-file-name file)
605 (if keep
606 (progn
607 (vc-revert-buffer1 t noquery)
608 (vc-mode-line buffer-file-name))
609 (progn
610 (delete-window)
611 (kill-buffer (current-buffer))))))
613 (defun vc-start-entry (file rev comment msg action &optional after-hook)
614 ;; Accept a comment for an operation on FILE revision REV. If COMMENT
615 ;; is nil, pop up a VC-log buffer, emit MSG, and set the
616 ;; action on close to ACTION; otherwise, do action immediately.
617 ;; Remember the file's buffer in vc-parent-buffer (current one if no file).
618 ;; AFTER-HOOK specifies the local value for vc-log-operation-hook.
619 (let ((parent (if file (find-file-noselect file) (current-buffer))))
620 (if comment
621 (set-buffer (get-buffer-create "*VC-log*"))
622 (pop-to-buffer (get-buffer-create "*VC-log*")))
623 (set (make-local-variable 'vc-parent-buffer) parent)
624 (set (make-local-variable 'vc-parent-buffer-name)
625 (concat " from " (buffer-name vc-parent-buffer)))
626 (vc-mode-line (or file " (no file)"))
627 (vc-log-mode)
628 (make-local-variable 'vc-log-after-operation-hook)
629 (if after-hook
630 (setq vc-log-after-operation-hook after-hook))
631 (setq vc-log-operation action)
632 (setq vc-log-file file)
633 (setq vc-log-version rev)
634 (if comment
635 (progn
636 (erase-buffer)
637 (if (eq comment t)
638 (vc-finish-logentry t)
639 (insert comment)
640 (vc-finish-logentry nil)))
641 (message "%s Type C-c C-c when done." msg))))
643 (defun vc-admin (file rev &optional comment)
644 "Check a file into your version-control system.
645 FILE is the unmodified name of the file. REV should be the base version
646 level to check it in under. COMMENT, if specified, is the checkin comment."
647 (vc-start-entry file rev
648 (or comment (not vc-initial-comment))
649 "Enter initial comment." 'vc-backend-admin
650 nil))
652 (defun vc-checkout (file &optional writable)
653 "Retrieve a copy of the latest version of the given file."
654 ;; If ftp is on this system and the name matches the ange-ftp format
655 ;; for a remote file, the user is trying something that won't work.
656 (if (and (string-match "^/[^/:]+:" file) (vc-find-binary "ftp"))
657 (error "Sorry, you can't check out files over FTP"))
658 (vc-backend-checkout file writable)
659 (if (string-equal file buffer-file-name)
660 (vc-resynch-window file t t))
663 (defun vc-steal-lock (file rev &optional owner)
664 "Steal the lock on the current workfile."
665 (let (file-description)
666 (if (not owner)
667 (setq owner (vc-locking-user file)))
668 (if rev
669 (setq file-description (format "%s:%s" file rev))
670 (setq file-description file))
671 (if (not (y-or-n-p (format "Take the lock on %s from %s? "
672 file-description owner)))
673 (error "Steal cancelled"))
674 (pop-to-buffer (get-buffer-create "*VC-mail*"))
675 (setq default-directory (expand-file-name "~/"))
676 (auto-save-mode auto-save-default)
677 (mail-mode)
678 (erase-buffer)
679 (mail-setup owner (format "Stolen lock on %s" file-description) nil nil nil
680 (list (list 'vc-finish-steal file rev)))
681 (goto-char (point-max))
682 (insert
683 (format "I stole the lock on %s, " file-description)
684 (current-time-string)
685 ".\n")
686 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
688 ;; This is called when the notification has been sent.
689 (defun vc-finish-steal (file version)
690 (vc-backend-steal file version)
691 (if (get-file-buffer file)
692 (save-excursion
693 (set-buffer (get-file-buffer file))
694 (vc-resynch-window file t t))))
696 (defun vc-checkin (file &optional rev comment)
697 "Check in the file specified by FILE.
698 The optional argument REV may be a string specifying the new version level
699 \(if nil increment the current level). The file is either retained with write
700 permissions zeroed, or deleted (according to the value of `vc-keep-workfiles').
701 If the back-end is CVS, a writable workfile is always kept.
702 COMMENT is a comment string; if omitted, a buffer is
703 popped up to accept a comment."
704 (vc-start-entry file rev comment
705 "Enter a change comment." 'vc-backend-checkin
706 'vc-checkin-hook))
708 ;;; Here is a checkin hook that may prove useful to sites using the
709 ;;; ChangeLog facility supported by Emacs.
710 (defun vc-comment-to-change-log (&optional whoami file-name)
711 "Enter last VC comment into change log file for current buffer's file.
712 Optional arg (interactive prefix) non-nil means prompt for user name and site.
713 Second arg is file name of change log. \
714 If nil, uses `change-log-default-name'."
715 (interactive (if current-prefix-arg
716 (list current-prefix-arg
717 (prompt-for-change-log-name))))
718 ;; Make sure the defvar for add-log-current-defun-function has been executed
719 ;; before binding it.
720 (require 'add-log)
721 (let (;; Extract the comment first so we get any error before doing anything.
722 (comment (ring-ref vc-comment-ring 0))
723 ;; Don't let add-change-log-entry insert a defun name.
724 (add-log-current-defun-function 'ignore)
725 end)
726 ;; Call add-log to do half the work.
727 (add-change-log-entry whoami file-name t t)
728 ;; Insert the VC comment, leaving point before it.
729 (setq end (save-excursion (insert comment) (point-marker)))
730 (if (looking-at "\\s *\\s(")
731 ;; It starts with an open-paren, as in "(foo): Frobbed."
732 ;; So remove the ": " add-log inserted.
733 (delete-char -2))
734 ;; Canonicalize the white space between the file name and comment.
735 (just-one-space)
736 ;; Indent rest of the text the same way add-log indented the first line.
737 (let ((indentation (current-indentation)))
738 (save-excursion
739 (while (< (point) end)
740 (forward-line 1)
741 (indent-to indentation))
742 (setq end (point))))
743 ;; Fill the inserted text, preserving open-parens at bol.
744 (let ((paragraph-separate (concat paragraph-separate "\\|^\\s *\\s("))
745 (paragraph-start (concat paragraph-start "\\|^\\s *\\s(")))
746 (beginning-of-line)
747 (fill-region (point) end))
748 ;; Canonicalize the white space at the end of the entry so it is
749 ;; separated from the next entry by a single blank line.
750 (skip-syntax-forward " " end)
751 (delete-char (- (skip-syntax-backward " ")))
752 (or (eobp) (looking-at "\n\n")
753 (insert "\n"))))
756 (defun vc-finish-logentry (&optional nocomment)
757 "Complete the operation implied by the current log entry."
758 (interactive)
759 ;; Check and record the comment, if any.
760 (if (not nocomment)
761 (progn
762 (goto-char (point-max))
763 (if (not (bolp))
764 (newline))
765 ;; Comment too long?
766 (vc-backend-logentry-check vc-log-file)
767 ;; Record the comment in the comment ring
768 (if (null vc-comment-ring)
769 (setq vc-comment-ring (make-ring vc-maximum-comment-ring-size)))
770 (ring-insert vc-comment-ring (buffer-string))
772 ;; Sync parent buffer in case the user modified it while editing the comment.
773 ;; But not if it is a vc-dired buffer.
774 (save-excursion
775 (set-buffer vc-parent-buffer)
776 (or vc-dired-mode
777 (vc-buffer-sync)))
778 ;; OK, do it to it
779 (if vc-log-operation
780 (save-excursion
781 (funcall vc-log-operation
782 vc-log-file
783 vc-log-version
784 (buffer-string)))
785 (error "No log operation is pending"))
786 ;; save the vc-log-after-operation-hook of log buffer
787 (let ((after-hook vc-log-after-operation-hook))
788 ;; Return to "parent" buffer of this checkin and remove checkin window
789 (pop-to-buffer vc-parent-buffer)
790 (let ((logbuf (get-buffer "*VC-log*")))
791 (delete-windows-on logbuf)
792 (kill-buffer logbuf))
793 ;; Now make sure we see the expanded headers
794 (if buffer-file-name
795 (vc-resynch-window buffer-file-name vc-keep-workfiles t))
796 (run-hooks after-hook)))
798 ;; Code for access to the comment ring
800 (defun vc-previous-comment (arg)
801 "Cycle backwards through comment history."
802 (interactive "*p")
803 (let ((len (ring-length vc-comment-ring)))
804 (cond ((<= len 0)
805 (message "Empty comment ring")
806 (ding))
808 (erase-buffer)
809 ;; Initialize the index on the first use of this command
810 ;; so that the first M-p gets index 0, and the first M-n gets
811 ;; index -1.
812 (if (null vc-comment-ring-index)
813 (setq vc-comment-ring-index
814 (if (> arg 0) -1
815 (if (< arg 0) 1 0))))
816 (setq vc-comment-ring-index
817 (mod (+ vc-comment-ring-index arg) len))
818 (message "%d" (1+ vc-comment-ring-index))
819 (insert (ring-ref vc-comment-ring vc-comment-ring-index))))))
821 (defun vc-next-comment (arg)
822 "Cycle forwards through comment history."
823 (interactive "*p")
824 (vc-previous-comment (- arg)))
826 (defun vc-comment-search-reverse (str)
827 "Searches backwards through comment history for substring match."
828 (interactive "sComment substring: ")
829 (if (string= str "")
830 (setq str vc-last-comment-match)
831 (setq vc-last-comment-match str))
832 (if (null vc-comment-ring-index)
833 (setq vc-comment-ring-index -1))
834 (let ((str (regexp-quote str))
835 (len (ring-length vc-comment-ring))
836 (n (1+ vc-comment-ring-index)))
837 (while (and (< n len) (not (string-match str (ring-ref vc-comment-ring n))))
838 (setq n (+ n 1)))
839 (cond ((< n len)
840 (vc-previous-comment (- n vc-comment-ring-index)))
841 (t (error "Not found")))))
843 (defun vc-comment-search-forward (str)
844 "Searches forwards through comment history for substring match."
845 (interactive "sComment substring: ")
846 (if (string= str "")
847 (setq str vc-last-comment-match)
848 (setq vc-last-comment-match str))
849 (if (null vc-comment-ring-index)
850 (setq vc-comment-ring-index 0))
851 (let ((str (regexp-quote str))
852 (len (ring-length vc-comment-ring))
853 (n vc-comment-ring-index))
854 (while (and (>= n 0) (not (string-match str (ring-ref vc-comment-ring n))))
855 (setq n (- n 1)))
856 (cond ((>= n 0)
857 (vc-next-comment (- n vc-comment-ring-index)))
858 (t (error "Not found")))))
860 ;; Additional entry points for examining version histories
862 ;;;###autoload
863 (defun vc-diff (historic &optional not-urgent)
864 "Display diffs between file versions.
865 Normally this compares the current file and buffer with the most recent
866 checked in version of that file. This uses no arguments.
867 With a prefix argument, it reads the file name to use
868 and two version designators specifying which versions to compare."
869 (interactive "P")
870 (if vc-dired-mode
871 (set-buffer (find-file-noselect (dired-get-filename))))
872 (while vc-parent-buffer
873 (pop-to-buffer vc-parent-buffer))
874 (if historic
875 (call-interactively 'vc-version-diff)
876 (if (or (null buffer-file-name) (null (vc-name buffer-file-name)))
877 (error
878 "There is no version-control master associated with this buffer"))
879 (let ((file buffer-file-name)
880 unchanged)
881 (or (and file (vc-name file))
882 (vc-registration-error file))
883 (vc-buffer-sync not-urgent)
884 (setq unchanged (vc-workfile-unchanged-p buffer-file-name))
885 (if unchanged
886 (message "No changes to %s since latest version." file)
887 (vc-backend-diff file)
888 ;; Ideally, we'd like at this point to parse the diff so that
889 ;; the buffer effectively goes into compilation mode and we
890 ;; can visit the old and new change locations via next-error.
891 ;; Unfortunately, this is just too painful to do. The basic
892 ;; problem is that the `old' file doesn't exist to be
893 ;; visited. This plays hell with numerous assumptions in
894 ;; the diff.el and compile.el machinery.
895 (pop-to-buffer "*vc*")
896 (pop-to-buffer "*vc*")
897 (if (= 0 (buffer-size))
898 (progn
899 (setq unchanged t)
900 (message "No changes to %s since latest version." file))
901 (goto-char (point-min))
902 (shrink-window-if-larger-than-buffer)))
903 (not unchanged))))
905 (defun vc-version-diff (file rel1 rel2)
906 "For FILE, report diffs between two stored versions REL1 and REL2 of it.
907 If FILE is a directory, generate diffs between versions for all registered
908 files in or below it."
909 (interactive "FFile or directory to diff: \nsOlder version: \nsNewer version: ")
910 (if (string-equal rel1 "") (setq rel1 nil))
911 (if (string-equal rel2 "") (setq rel2 nil))
912 (if (file-directory-p file)
913 (let ((camefrom (current-buffer)))
914 (set-buffer (get-buffer-create "*vc-status*"))
915 (set (make-local-variable 'vc-parent-buffer) camefrom)
916 (set (make-local-variable 'vc-parent-buffer-name)
917 (concat " from " (buffer-name camefrom)))
918 (erase-buffer)
919 (insert "Diffs between "
920 (or rel1 "last version checked in")
921 " and "
922 (or rel2 "current workfile(s)")
923 ":\n\n")
924 (set-buffer (get-buffer-create "*vc*"))
925 (cd file)
926 (vc-file-tree-walk
927 (function (lambda (f)
928 (message "Looking at %s" f)
929 (and
930 (not (file-directory-p f))
931 (vc-registered f)
932 (vc-backend-diff f rel1 rel2)
933 (append-to-buffer "*vc-status*" (point-min) (point-max)))
935 (pop-to-buffer "*vc-status*")
936 (insert "\nEnd of diffs.\n")
937 (goto-char (point-min))
938 (set-buffer-modified-p nil)
940 (if (zerop (vc-backend-diff file rel1 rel2))
941 (message "No changes to %s between %s and %s." file rel1 rel2)
942 (pop-to-buffer "*vc*"))))
944 ;;;###autoload
945 (defun vc-version-other-window (rev)
946 "Visit version REV of the current buffer in another window.
947 If the current buffer is named `F', the version is named `F.~REV~'.
948 If `F.~REV~' already exists, it is used instead of being re-created."
949 (interactive "sVersion to visit (default is latest version): ")
950 (if vc-dired-mode
951 (set-buffer (find-file-noselect (dired-get-filename))))
952 (while vc-parent-buffer
953 (pop-to-buffer vc-parent-buffer))
954 (if (and buffer-file-name (vc-name buffer-file-name))
955 (let* ((version (if (string-equal rev "")
956 (vc-latest-version buffer-file-name)
957 rev))
958 (filename (concat buffer-file-name ".~" version "~")))
959 (or (file-exists-p filename)
960 (vc-backend-checkout buffer-file-name nil version filename))
961 (find-file-other-window filename))
962 (vc-registration-error buffer-file-name)))
964 ;; Header-insertion code
966 ;;;###autoload
967 (defun vc-insert-headers ()
968 "Insert headers in a file for use with your version-control system.
969 Headers desired are inserted at the start of the buffer, and are pulled from
970 the variable `vc-header-alist'."
971 (interactive)
972 (if vc-dired-mode
973 (find-file-other-window (dired-get-filename)))
974 (while vc-parent-buffer
975 (pop-to-buffer vc-parent-buffer))
976 (save-excursion
977 (save-restriction
978 (widen)
979 (if (or (not (vc-check-headers))
980 (y-or-n-p "Version headers already exist. Insert another set? "))
981 (progn
982 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
983 (comment-start-vc (or (car delims) comment-start "#"))
984 (comment-end-vc (or (car (cdr delims)) comment-end ""))
985 (hdstrings (cdr (assoc (vc-backend-deduce (buffer-file-name)) vc-header-alist))))
986 (mapcar (function (lambda (s)
987 (insert comment-start-vc "\t" s "\t"
988 comment-end-vc "\n")))
989 hdstrings)
990 (if vc-static-header-alist
991 (mapcar (function (lambda (f)
992 (if (string-match (car f) buffer-file-name)
993 (insert (format (cdr f) (car hdstrings))))))
994 vc-static-header-alist))
996 )))))
998 ;; The VC directory submode. Coopt Dired for this.
999 ;; All VC commands get mapped into logical equivalents.
1001 (defvar vc-dired-prefix-map (make-sparse-keymap))
1002 (define-key vc-dired-prefix-map "\C-xv" vc-prefix-map)
1004 (or (not (boundp 'minor-mode-map-alist))
1005 (assq 'vc-dired-mode minor-mode-map-alist)
1006 (setq minor-mode-map-alist
1007 (cons (cons 'vc-dired-mode vc-dired-prefix-map)
1008 minor-mode-map-alist)))
1010 (defun vc-dired-mode ()
1011 "The augmented Dired minor mode used in VC directory buffers.
1012 All Dired commands operate normally. Users currently locking listed files
1013 are listed in place of the file's owner and group.
1014 Keystrokes bound to VC commands will execute as though they had been called
1015 on a buffer attached to the file named in the current Dired buffer line."
1016 (setq vc-dired-mode t)
1017 (setq vc-mode " under VC"))
1019 (defun vc-dired-reformat-line (x)
1020 ;; Hack a directory-listing line, plugging in locking-user info in
1021 ;; place of the user and group info. Should have the beneficial
1022 ;; side-effect of shortening the listing line. Each call starts with
1023 ;; point immediately following the dired mark area on the line to be
1024 ;; hacked.
1026 ;; Simplest possible one:
1027 ;; (insert (concat x "\t")))
1029 ;; This code, like dired, assumes UNIX -l format.
1030 (forward-word 1) ;; skip over any extra field due to -ibs options
1031 (cond
1032 ;; This hack is used by the CVS code. See vc-locking-user.
1033 ((numberp x)
1034 (cond
1035 ((re-search-forward "\\([0-9]+ \\)\\([^ ]+\\)\\( .*\\)" nil 0)
1036 (save-excursion
1037 (goto-char (match-beginning 2))
1038 (insert "(")
1039 (goto-char (1+ (match-end 2)))
1040 (insert ")")
1041 (delete-char (- 17 (- (match-end 2) (match-beginning 2))))
1042 (insert (substring " " 0
1043 (- 7 (- (match-end 2) (match-beginning 2)))))))))
1045 (if x (setq x (concat "(" x ")")))
1046 (if (re-search-forward "\\([0-9]+ \\).................\\( .*\\)" nil 0)
1047 (let ((rep (substring (concat x " ") 0 9)))
1048 (replace-match (concat "\\1" rep "\\2") t)))
1051 ;;;###autoload
1052 (defun vc-directory (dir verbose &optional nested)
1053 "Show version-control status of all files in the directory DIR.
1054 If the second argument VERBOSE is non-nil, show all files;
1055 otherwise show only files that current locked in the version control system.
1056 Interactively, supply a prefix arg to make VERBOSE non-nil.
1058 If the optional third argument NESTED is non-nil,
1059 scan the entire tree of subdirectories of the current directory."
1060 (interactive "DVC status of directory: \nP")
1061 (let* (nonempty
1062 (dl (length dir))
1063 (filelist nil) (userlist nil)
1064 dired-buf
1065 dired-buf-mod-count
1066 (subfunction
1067 (function (lambda (f)
1068 (if (vc-registered f)
1069 (let ((user (vc-locking-user f)))
1070 (and (or verbose user)
1071 (setq filelist (cons (substring f dl) filelist))
1072 (setq userlist (cons user userlist)))))))))
1073 (let ((default-directory dir))
1074 (if nested
1075 (vc-file-tree-walk subfunction)
1076 (vc-dir-all-files subfunction)))
1077 (save-excursion
1078 ;; This uses a semi-documented feature of dired; giving a switch
1079 ;; argument forces the buffer to refresh each time.
1080 (dired
1081 (cons dir (nreverse filelist))
1082 dired-listing-switches)
1083 (setq dired-buf (current-buffer))
1084 (setq nonempty (not (zerop (buffer-size)))))
1085 (if nonempty
1086 (progn
1087 (pop-to-buffer dired-buf)
1088 (vc-dired-mode)
1089 (goto-char (point-min))
1090 (setq buffer-read-only nil)
1091 (forward-line 1) ;; Skip header line
1092 (mapcar
1093 (function
1094 (lambda (x)
1095 (forward-char 2) ;; skip dired's mark area
1096 (vc-dired-reformat-line x)
1097 (forward-line 1))) ;; go to next line
1098 (nreverse userlist))
1099 (setq buffer-read-only t)
1100 (goto-char (point-min))
1102 (message "No files are currently %s under %s"
1103 (if verbose "registered" "locked") default-directory))
1106 ; Emacs 18 also lacks these.
1107 (or (boundp 'compilation-old-error-list)
1108 (setq compilation-old-error-list nil))
1110 ;; Named-configuration support for SCCS
1112 (defun vc-add-triple (name file rev)
1113 (save-excursion
1114 (find-file (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file))
1115 (goto-char (point-max))
1116 (insert name "\t:\t" file "\t" rev "\n")
1117 (basic-save-buffer)
1118 (kill-buffer (current-buffer))
1121 (defun vc-record-rename (file newname)
1122 (save-excursion
1123 (find-file (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file))
1124 (goto-char (point-min))
1125 ;; (replace-regexp (concat ":" (regexp-quote file) "$") (concat ":" newname))
1126 (while (re-search-forward (concat ":" (regexp-quote file) "$") nil t)
1127 (replace-match (concat ":" newname) nil nil))
1128 (basic-save-buffer)
1129 (kill-buffer (current-buffer))
1132 (defun vc-lookup-triple (file name)
1133 ;; Return the numeric version corresponding to a named snapshot of file
1134 ;; If name is nil or a version number string it's just passed through
1135 (cond ((null name) name)
1136 ((let ((firstchar (aref name 0)))
1137 (and (>= firstchar ?0) (<= firstchar ?9)))
1138 name)
1140 (car (vc-master-info
1141 (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file)
1142 (list (concat name "\t:\t" file "\t\\(.+\\)"))))
1145 ;; Named-configuration entry points
1147 (defun vc-locked-example ()
1148 ;; Return an example of why the current directory is not ready to be snapshot
1149 ;; or nil if no such example exists.
1150 (catch 'vc-locked-example
1151 (vc-file-tree-walk
1152 (function (lambda (f)
1153 (if (and (vc-registered f) (vc-locking-user f))
1154 (throw 'vc-locked-example f)))))
1155 nil))
1157 ;;;###autoload
1158 (defun vc-create-snapshot (name)
1159 "Make a snapshot called NAME.
1160 The snapshot is made from all registered files at or below the current
1161 directory. For each file, the version level of its latest
1162 version becomes part of the named configuration."
1163 (interactive "sNew snapshot name: ")
1164 (let ((locked (vc-locked-example)))
1165 (if locked
1166 (error "File %s is locked" locked)
1167 (vc-file-tree-walk
1168 (function (lambda (f) (and
1169 (vc-name f)
1170 (vc-backend-assign-name f name)))))
1173 ;;;###autoload
1174 (defun vc-retrieve-snapshot (name)
1175 "Retrieve the snapshot called NAME.
1176 This function fails if any files are locked at or below the current directory
1177 Otherwise, all registered files are checked out (unlocked) at their version
1178 levels in the snapshot."
1179 (interactive "sSnapshot name to retrieve: ")
1180 (let ((locked (vc-locked-example)))
1181 (if locked
1182 (error "File %s is locked" locked)
1183 (vc-file-tree-walk
1184 (function (lambda (f) (and
1185 (vc-name f)
1186 (vc-error-occurred
1187 (vc-backend-checkout f nil name))))))
1190 ;; Miscellaneous other entry points
1192 ;;;###autoload
1193 (defun vc-print-log ()
1194 "List the change log of the current buffer in a window."
1195 (interactive)
1196 (if vc-dired-mode
1197 (set-buffer (find-file-noselect (dired-get-filename))))
1198 (while vc-parent-buffer
1199 (pop-to-buffer vc-parent-buffer))
1200 (if (and buffer-file-name (vc-name buffer-file-name))
1201 (progn
1202 (vc-backend-print-log buffer-file-name)
1203 (pop-to-buffer (get-buffer-create "*vc*"))
1204 (while (looking-at "=*\n")
1205 (delete-char (- (match-end 0) (match-beginning 0)))
1206 (forward-line -1))
1207 (goto-char (point-min))
1208 (if (looking-at "[\b\t\n\v\f\r ]+")
1209 (delete-char (- (match-end 0) (match-beginning 0))))
1210 (shrink-window-if-larger-than-buffer)
1212 (vc-registration-error buffer-file-name)
1216 ;;;###autoload
1217 (defun vc-revert-buffer ()
1218 "Revert the current buffer's file back to the latest checked-in version.
1219 This asks for confirmation if the buffer contents are not identical
1220 to that version.
1221 If the back-end is CVS, this will give you the most recent revision of
1222 the file on the branch you are editing."
1223 (interactive)
1224 (if vc-dired-mode
1225 (find-file-other-window (dired-get-filename)))
1226 (while vc-parent-buffer
1227 (pop-to-buffer vc-parent-buffer))
1228 (let ((file buffer-file-name)
1229 (obuf (current-buffer)) (changed (vc-diff nil t)))
1230 (if (and changed (or vc-suppress-confirm
1231 (not (yes-or-no-p "Discard changes? "))))
1232 (progn
1233 (delete-window)
1234 (error "Revert cancelled"))
1235 (set-buffer obuf))
1236 (if changed
1237 (delete-window))
1238 (vc-backend-revert file)
1239 (vc-resynch-window file t t)
1243 ;;;###autoload
1244 (defun vc-cancel-version (norevert)
1245 "Get rid of most recently checked in version of this file.
1246 A prefix argument means do not revert the buffer afterwards."
1247 (interactive "P")
1248 (if vc-dired-mode
1249 (find-file-other-window (dired-get-filename)))
1250 (while vc-parent-buffer
1251 (pop-to-buffer vc-parent-buffer))
1252 (let* ((target (concat (vc-latest-version (buffer-file-name))))
1253 (yours (concat (vc-your-latest-version (buffer-file-name))))
1254 (prompt (if (string-equal yours target)
1255 "Remove your version %s from master? "
1256 "Version %s was not your change. Remove it anyway? ")))
1257 (if (null (yes-or-no-p (format prompt target)))
1259 (vc-backend-uncheck (buffer-file-name) target)
1260 (if (or norevert
1261 (not (yes-or-no-p "Revert buffer to most recent remaining version? ")))
1262 (vc-mode-line (buffer-file-name))
1263 (vc-checkout (buffer-file-name) nil)))
1266 ;;;###autoload
1267 (defun vc-rename-file (old new)
1268 "Rename file OLD to NEW, and rename its master file likewise."
1269 (interactive "fVC rename file: \nFRename to: ")
1270 ;; There are several ways of renaming files under CVS 1.3, but they all
1271 ;; have serious disadvantages. See the FAQ (available from think.com in
1272 ;; pub/cvs/). I'd rather send the user an error, than do something he might
1273 ;; consider to be wrong. When the famous, long-awaited rename database is
1274 ;; implemented things might change for the better. This is unlikely to occur
1275 ;; until CVS 2.0 is released. --ceder 1994-01-23 21:27:51
1276 (if (eq (vc-backend-deduce old) 'CVS)
1277 (error "Renaming files under CVS is dangerous and not supported in VC."))
1278 (let ((oldbuf (get-file-buffer old)))
1279 (if (and oldbuf (buffer-modified-p oldbuf))
1280 (error "Please save files before moving them"))
1281 (if (get-file-buffer new)
1282 (error "Already editing new file name"))
1283 (if (file-exists-p new)
1284 (error "New file already exists"))
1285 (let ((oldmaster (vc-name old)))
1286 (if oldmaster
1287 (progn
1288 (if (vc-locking-user old)
1289 (error "Please check in files before moving them"))
1290 (if (or (file-symlink-p oldmaster)
1291 ;; This had FILE, I changed it to OLD. -- rms.
1292 (file-symlink-p (vc-backend-subdirectory-name old)))
1293 (error "This is not a safe thing to do in the presence of symbolic links"))
1294 (rename-file
1295 oldmaster
1296 (let ((backend (vc-backend-deduce old))
1297 (newdir (or (file-name-directory new) ""))
1298 (newbase (file-name-nondirectory new)))
1299 (catch 'found
1300 (mapcar
1301 (function
1302 (lambda (s)
1303 (if (eq backend (cdr s))
1304 (let* ((newmaster (format (car s) newdir newbase))
1305 (newmasterdir (file-name-directory newmaster)))
1306 (if (or (not newmasterdir)
1307 (file-directory-p newmasterdir))
1308 (throw 'found newmaster))))))
1309 vc-master-templates)
1310 (error "New file lacks a version control directory"))))))
1311 (if (or (not oldmaster) (file-exists-p old))
1312 (rename-file old new)))
1313 ; ?? Renaming a file might change its contents due to keyword expansion.
1314 ; We should really check out a new copy if the old copy was precisely equal
1315 ; to some checked in version. However, testing for this is tricky....
1316 (if oldbuf
1317 (save-excursion
1318 (set-buffer oldbuf)
1319 (set-visited-file-name new)
1320 (set-buffer-modified-p nil))))
1321 ;; This had FILE, I changed it to OLD. -- rms.
1322 (vc-backend-dispatch old
1323 (vc-record-rename old new) ;SCCS
1324 nil ;RCS
1325 nil ;CVS
1329 ;;;###autoload
1330 (defun vc-update-change-log (&rest args)
1331 "Find change log file and add entries from recent RCS logs.
1332 The mark is left at the end of the text prepended to the change log.
1333 With prefix arg of C-u, only find log entries for the current buffer's file.
1334 With any numeric prefix arg, find log entries for all files currently visited.
1335 Otherwise, find log entries for all registered files in the default directory.
1336 From a program, any arguments are passed to the `rcs2log' script."
1337 (interactive
1338 (cond ((consp current-prefix-arg) ;C-u
1339 (list buffer-file-name))
1340 (current-prefix-arg ;Numeric argument.
1341 (let ((files nil)
1342 (buffers (buffer-list))
1343 file)
1344 (while buffers
1345 (setq file (buffer-file-name (car buffers)))
1346 (and file (vc-backend-deduce file)
1347 (setq files (cons file files)))
1348 (setq buffers (cdr buffers)))
1349 files))
1351 (let ((RCS (concat default-directory "RCS")))
1352 (and (file-directory-p RCS)
1353 (mapcar (function
1354 (lambda (f)
1355 (if (string-match "\\(.*\\),v$" f)
1356 (substring f 0 (match-end 1))
1357 f)))
1358 (directory-files RCS nil "...\\|^[^.]\\|^.[^.]")))))))
1359 (let ((odefault default-directory))
1360 (find-file-other-window (find-change-log))
1361 (barf-if-buffer-read-only)
1362 (vc-buffer-sync)
1363 (undo-boundary)
1364 (goto-char (point-min))
1365 (push-mark)
1366 (message "Computing change log entries...")
1367 (message "Computing change log entries... %s"
1368 (if (or (null args)
1369 (eq 0 (apply 'call-process "rcs2log" nil t nil
1370 "-n"
1371 (user-login-name)
1372 (user-full-name)
1373 user-mail-address
1374 (mapcar (function
1375 (lambda (f)
1376 (file-relative-name
1377 (if (file-name-absolute-p f)
1379 (concat odefault f)))))
1380 args))))
1381 "done" "failed"))))
1383 ;; Functions for querying the master and lock files.
1385 (defun vc-match-substring (bn)
1386 (buffer-substring (match-beginning bn) (match-end bn)))
1388 (defun vc-parse-buffer (patterns &optional file properties)
1389 ;; Use PATTERNS to parse information out of the current buffer
1390 ;; by matching each regular expression in the list and returning \\1.
1391 ;; If a regexp has two tag brackets, assume the second is a date
1392 ;; field and we want the most recent entry matching the template.
1393 ;; If FILE and PROPERTIES are given, the latter must be a list of
1394 ;; properties of the same length as PATTERNS; each property is assigned
1395 ;; the corresponding value.
1396 (mapcar (function (lambda (p)
1397 (goto-char (point-min))
1398 (if (string-match "\\\\(.*\\\\(" p)
1399 (let ((latest-date "") (latest-val))
1400 (while (re-search-forward p nil t)
1401 (let ((date (vc-match-substring 2)))
1402 (if (string< latest-date date)
1403 (progn
1404 (setq latest-date date)
1405 (setq latest-val
1406 (vc-match-substring 1))))))
1407 latest-val))
1408 (prog1
1409 (let ((value nil))
1410 (if (re-search-forward p nil t)
1411 (setq value (vc-match-substring 1)))
1412 (if file
1413 (vc-file-setprop file (car properties) value))
1414 value)
1415 (setq properties (cdr properties)))))
1416 patterns)
1419 (defun vc-master-info (file fields &optional rfile properties)
1420 ;; Search for information in a master file.
1421 (if (and file (file-exists-p file))
1422 (save-excursion
1423 (let ((buf))
1424 (setq buf (create-file-buffer file))
1425 (set-buffer buf))
1426 (erase-buffer)
1427 (insert-file-contents file nil)
1428 (set-buffer-modified-p nil)
1429 (auto-save-mode nil)
1430 (prog1
1431 (vc-parse-buffer fields rfile properties)
1432 (kill-buffer (current-buffer)))
1434 (if rfile
1435 (mapcar
1436 (function (lambda (p) (vc-file-setprop rfile p nil)))
1437 properties))
1441 (defun vc-log-info (command file last flags patterns &optional properties)
1442 ;; Search for information in log program output
1443 (if (and file (file-exists-p file))
1444 (save-excursion
1445 (set-buffer (get-buffer-create "*vc*"))
1446 (apply 'vc-do-command 0 command file last flags)
1447 (set-buffer-modified-p nil)
1448 (prog1
1449 (vc-parse-buffer patterns file properties)
1450 (kill-buffer (current-buffer))
1453 (if file
1454 (mapcar
1455 (function (lambda (p) (vc-file-setprop file p nil)))
1456 properties))
1460 (defun vc-locking-user (file)
1461 "Return the name of the person currently holding a lock on FILE.
1462 Return nil if there is no such person.
1463 Under CVS, a file is considered locked if it has been modified since it
1464 was checked out. Under CVS, this will sometimes return the uid of
1465 the owner of the file (as a number) instead of a string."
1466 (setq file (expand-file-name file));; ??? Work around bug in 19.0.4
1467 (cond
1468 ((eq (vc-backend-deduce file) 'CVS)
1469 (if (vc-workfile-unchanged-p file t)
1471 ;; The expression below should return the username of the owner
1472 ;; of the file. It doesn't. It returns the username if it is
1473 ;; you, or otherwise the UID of the owner of the file. The
1474 ;; return value from this function is only used by
1475 ;; vc-dired-reformat-line, and it does the proper thing if a UID
1476 ;; is returned.
1478 ;; The *proper* way to fix this would be to implement a built-in
1479 ;; function in Emacs, say, (username UID), that returns the
1480 ;; username of a given UID.
1482 ;; The result of this hack is that vc-directory will print the
1483 ;; name of the owner of the file for any files that are
1484 ;; modified.
1485 (let ((uid (nth 2 (file-attributes file))))
1486 (if (= uid (user-uid))
1487 (user-login-name)
1488 uid))))
1490 (if (or (not vc-keep-workfiles)
1491 (eq vc-mistrust-permissions 't)
1492 (and vc-mistrust-permissions
1493 (funcall vc-mistrust-permissions (vc-backend-subdirectory-name
1494 file))))
1495 (vc-true-locking-user file)
1496 ;; This implementation assumes that any file which is under version
1497 ;; control and has -rw-r--r-- is locked by its owner. This is true
1498 ;; for both RCS and SCCS, which keep unlocked files at -r--r--r--.
1499 ;; We have to be careful not to exclude files with execute bits on;
1500 ;; scripts can be under version control too. Also, we must ignore
1501 ;; the group-read and other-read bits, since paranoid users turn them off.
1502 ;; This hack wins because calls to the very expensive vc-fetch-properties
1503 ;; function only have to be made if (a) the file is locked by someone
1504 ;; other than the current user, or (b) some untoward manipulation
1505 ;; behind vc's back has changed the owner or the `group' or `other'
1506 ;; write bits.
1507 (let ((attributes (file-attributes file)))
1508 (cond ((string-match ".r-..-..-." (nth 8 attributes))
1509 nil)
1510 ((and (= (nth 2 attributes) (user-uid))
1511 (string-match ".rw..-..-." (nth 8 attributes)))
1512 (user-login-name))
1514 (vc-true-locking-user file))))))))
1516 (defun vc-true-locking-user (file)
1517 ;; The slow but reliable version
1518 (vc-fetch-properties file)
1519 (vc-file-getprop file 'vc-locking-user))
1521 (defun vc-latest-version (file)
1522 ;; Return version level of the latest version of FILE
1523 (vc-fetch-properties file)
1524 (vc-file-getprop file 'vc-latest-version))
1526 (defun vc-your-latest-version (file)
1527 ;; Return version level of the latest version of FILE checked in by you
1528 (vc-fetch-properties file)
1529 (vc-file-getprop file 'vc-your-latest-version))
1531 ;; Collect back-end-dependent stuff here
1533 ;; Everything eventually funnels through these functions. To implement
1534 ;; support for a new version-control system, add another branch to the
1535 ;; vc-backend-dispatch macro and fill it in in each call. The variable
1536 ;; vc-master-templates in vc-hooks.el will also have to change.
1538 (defmacro vc-backend-dispatch (f s r c)
1539 "Execute FORM1, FORM2 or FORM3 depending whether we're using SCCS, RCS or CVS.
1540 If FORM3 is RCS, use FORM2 even if we are using CVS. (CVS shares some code
1541 with RCS)."
1542 (list 'let (list (list 'type (list 'vc-backend-deduce f)))
1543 (list 'cond
1544 (list (list 'eq 'type (quote 'SCCS)) s) ;; SCCS
1545 (list (list 'eq 'type (quote 'RCS)) r) ;; RCS
1546 (list (list 'eq 'type (quote 'CVS)) ;; CVS
1547 (if (eq c 'RCS) r c))
1550 (defun vc-lock-file (file)
1551 ;; Generate lock file name corresponding to FILE
1552 (let ((master (vc-name file)))
1553 (and
1554 master
1555 (string-match "\\(.*/\\)s\\.\\(.*\\)" master)
1556 (concat
1557 (substring master (match-beginning 1) (match-end 1))
1558 "p."
1559 (substring master (match-beginning 2) (match-end 2))))))
1562 (defun vc-fetch-properties (file)
1563 ;; Re-fetch all properties associated with the given file.
1564 ;; Currently these properties are:
1565 ;; vc-locking-user
1566 ;; vc-locked-version
1567 ;; vc-latest-version
1568 ;; vc-your-latest-version
1569 (vc-backend-dispatch
1570 file
1571 ;; SCCS
1572 (progn
1573 (vc-master-info (vc-lock-file file)
1574 (list
1575 "^[^ ]+ [^ ]+ \\([^ ]+\\)"
1576 "^\\([^ ]+\\)")
1577 file
1578 '(vc-locking-user vc-locked-version))
1579 (vc-master-info (vc-name file)
1580 (list
1581 "^\001d D \\([^ ]+\\)"
1582 (concat "^\001d D \\([^ ]+\\) .* "
1583 (regexp-quote (user-login-name)) " ")
1585 file
1586 '(vc-latest-version vc-your-latest-version))
1588 ;; RCS
1589 (vc-log-info "rlog" file 'MASTER nil
1590 (list
1591 "^locks: strict\n\t\\([^:]+\\)"
1592 "^locks: strict\n\t[^:]+: \\(.+\\)"
1593 "^revision[\t ]+\\([0-9.]+\\).*\ndate: \\([ /0-9:]+\\);"
1594 (concat
1595 "^revision[\t ]+\\([0-9.]+\\)\n.*author: "
1596 (regexp-quote (user-login-name))
1597 ";"))
1598 '(vc-locking-user vc-locked-version
1599 vc-latest-version vc-your-latest-version))
1600 ;; CVS
1601 ;; Don't fetch vc-locking-user and vc-locked-version here, since they
1602 ;; should always be nil anyhow. Don't fetch vc-your-latest-version, since
1603 ;; that is done in vc-find-cvs-master.
1604 (vc-log-info
1605 "cvs" file 'BASE '("status")
1606 ;; CVS 1.3 says "RCS Version:", other releases "RCS Revision:",
1607 ;; and CVS 1.4a1 says "Repository revision:". The regexp below
1608 ;; matches much more, but because of the way vc-log-info is
1609 ;; implemented it is impossible to use additional groups.
1610 '("R[eC][pS][ositry]* [VRr]e[rv][si][is]i?on:[\t ]+\\([0-9.]+\\)")
1611 '(vc-latest-version))
1614 (defun vc-backend-subdirectory-name (&optional file)
1615 ;; Where the master and lock files for the current directory are kept
1616 (symbol-name
1618 (and file (vc-backend-deduce file))
1619 vc-default-back-end
1620 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS)))))
1622 (defun vc-backend-admin (file &optional rev comment)
1623 ;; Register a file into the version-control system
1624 ;; Automatically retrieves a read-only version of the file with
1625 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise
1626 ;; it deletes the workfile.
1627 (vc-file-clearprops file)
1628 (or vc-default-back-end
1629 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS)))
1630 (message "Registering %s..." file)
1631 (let ((backend
1632 (cond
1633 ((file-exists-p (vc-backend-subdirectory-name)) vc-default-back-end)
1634 ((file-exists-p "RCS") 'RCS)
1635 ((file-exists-p "SCCS") 'SCCS)
1636 ((file-exists-p "CVS") 'CVS)
1637 (t vc-default-back-end))))
1638 (cond ((eq backend 'SCCS)
1639 (vc-do-command 0 "admin" file 'MASTER ;; SCCS
1640 (and rev (concat "-r" rev))
1641 "-fb"
1642 (concat "-i" file)
1643 (and comment (concat "-y" comment))
1644 (format
1645 (car (rassq 'SCCS vc-master-templates))
1646 (or (file-name-directory file) "")
1647 (file-name-nondirectory file)))
1648 (delete-file file)
1649 (if vc-keep-workfiles
1650 (vc-do-command 0 "get" file 'MASTER)))
1651 ((eq backend 'RCS)
1652 (vc-do-command 0 "ci" file 'MASTER ;; RCS
1653 (concat (if vc-keep-workfiles "-u" "-r") rev)
1654 (and comment (concat "-t-" comment))
1655 file))
1656 ((eq backend 'CVS)
1657 (vc-do-command 0 "cvs" file 'BASE ;; CVS
1658 "add"
1659 (and comment (not (string= comment ""))
1660 (concat "-m" comment)))
1662 (message "Registering %s...done" file)
1665 (defun vc-backend-checkout (file &optional writable rev workfile)
1666 ;; Retrieve a copy of a saved version into a workfile
1667 (let ((filename (or workfile file)))
1668 (message "Checking out %s..." filename)
1669 (save-excursion
1670 ;; Change buffers to get local value of vc-checkin-switches.
1671 (set-buffer (or (get-file-buffer file) (current-buffer)))
1672 (vc-backend-dispatch file
1673 (if workfile;; SCCS
1674 ;; Some SCCS implementations allow checking out directly to a
1675 ;; file using the -G option, but then some don't so use the
1676 ;; least common denominator approach and use the -p option
1677 ;; ala RCS.
1678 (let ((vc-modes (logior (file-modes (vc-name file))
1679 (if writable 128 0)))
1680 (failed t))
1681 (unwind-protect
1682 (progn
1683 (apply 'vc-do-command
1684 0 "/bin/sh" file 'MASTER "-c"
1685 ;; Some shells make the "" dummy argument into $0
1686 ;; while others use the shell's name as $0 and
1687 ;; use the "" as $1. The if-statement
1688 ;; converts the latter case to the former.
1689 (format "if [ x\"$1\" = x ]; then shift; fi; \
1690 umask %o; exec >\"$1\" || exit; \
1691 shift; umask %o; exec get \"$@\""
1692 (logand 511 (lognot vc-modes))
1693 (logand 511 (lognot (default-file-modes))))
1694 "" ; dummy argument for shell's $0
1695 filename
1696 (if writable "-e")
1697 "-p" (and rev
1698 (concat "-r" (vc-lookup-triple file rev)))
1699 vc-checkout-switches)
1700 (setq failed nil))
1701 (and failed (file-exists-p filename) (delete-file filename))))
1702 (apply 'vc-do-command 0 "get" file 'MASTER;; SCCS
1703 (if writable "-e")
1704 (and rev (concat "-r" (vc-lookup-triple file rev))))
1705 vc-checkout-switches)
1706 (if workfile;; RCS
1707 ;; RCS doesn't let us check out into arbitrary file names directly.
1708 ;; Use `co -p' and make stdout point to the correct file.
1709 (let ((vc-modes (logior (file-modes (vc-name file))
1710 (if writable 128 0)))
1711 (failed t))
1712 (unwind-protect
1713 (progn
1714 (apply 'vc-do-command
1715 0 "/bin/sh" file 'MASTER "-c"
1716 ;; See the SCCS case, above, regarding the
1717 ;; if-statement.
1718 (format "if [ x\"$1\" = x ]; then shift; fi; \
1719 umask %o; exec >\"$1\" || exit; \
1720 shift; umask %o; exec co \"$@\""
1721 (logand 511 (lognot vc-modes))
1722 (logand 511 (lognot (default-file-modes))))
1723 "" ; dummy argument for shell's $0
1724 filename
1725 (if writable "-l")
1726 (concat "-p" rev)
1727 vc-checkout-switches)
1728 (setq failed nil))
1729 (and failed (file-exists-p filename) (delete-file filename))))
1730 (apply 'vc-do-command 0 "co" file 'MASTER
1731 (if writable "-l")
1732 (and rev (concat "-r" rev)))
1733 vc-checkout-switches)
1734 (if workfile;; CVS
1735 ;; CVS is much like RCS
1736 (let ((failed t))
1737 (unwind-protect
1738 (progn
1739 (apply 'vc-do-command
1740 0 "/bin/sh" file 'BASE "-c"
1741 "exec >\"$1\" || exit; shift; exec cvs update \"$@\""
1742 "" ; dummy argument for shell's $0
1743 workfile
1744 (concat "-r" rev)
1745 "-p"
1746 vc-checkout-switches)
1747 (setq failed nil))
1748 (and failed (file-exists-p filename) (delete-file filename))))
1749 (apply 'vc-do-command 0 "cvs" file 'BASE
1750 (and rev (concat "-r" rev))
1751 file
1752 vc-checkout-switches))
1754 (or workfile
1755 (vc-file-setprop file
1756 'vc-checkout-time (nth 5 (file-attributes file))))
1757 (message "Checking out %s...done" filename))
1760 (defun vc-backend-logentry-check (file)
1761 (vc-backend-dispatch file
1762 (if (>= (buffer-size) 512) ;; SCCS
1763 (progn
1764 (goto-char 512)
1765 (error
1766 "Log must be less than 512 characters; point is now at pos 512")))
1767 nil ;; RCS
1768 nil) ;; CVS
1771 (defun vc-backend-checkin (file rev comment)
1772 ;; Register changes to FILE as level REV with explanatory COMMENT.
1773 ;; Automatically retrieves a read-only version of the file with
1774 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise
1775 ;; it deletes the workfile.
1776 (message "Checking in %s..." file)
1777 (save-excursion
1778 ;; Change buffers to get local value of vc-checkin-switches.
1779 (set-buffer (or (get-file-buffer file) (current-buffer)))
1780 (vc-backend-dispatch file
1781 (progn
1782 (apply 'vc-do-command 0 "delta" file 'MASTER
1783 (if rev (concat "-r" rev))
1784 (concat "-y" comment)
1785 vc-checkin-switches)
1786 (if vc-keep-workfiles
1787 (vc-do-command 0 "get" file 'MASTER))
1789 (apply 'vc-do-command 0 "ci" file 'MASTER
1790 (concat (if vc-keep-workfiles "-u" "-r") rev)
1791 (concat "-m" comment)
1792 vc-checkin-switches)
1793 (progn
1794 (apply 'vc-do-command 0 "cvs" file 'BASE
1795 "ci" "-m" comment
1796 vc-checkin-switches)
1797 (vc-file-setprop file 'vc-checkout-time
1798 (nth 5 (file-attributes file))))
1800 (vc-file-setprop file 'vc-locking-user nil)
1801 (message "Checking in %s...done" file)
1804 (defun vc-backend-revert (file)
1805 ;; Revert file to latest checked-in version.
1806 (message "Reverting %s..." file)
1807 (vc-backend-dispatch
1808 file
1809 (progn ;; SCCS
1810 (vc-do-command 0 "unget" file 'MASTER nil)
1811 (vc-do-command 0 "get" file 'MASTER nil))
1812 (vc-do-command 0 "co" file 'MASTER ;; RCS. This deletes the work file.
1813 "-f" "-u")
1814 (progn ;; CVS
1815 (delete-file file)
1816 (vc-do-command 0 "cvs" file 'BASE "update"))
1818 (vc-file-setprop file 'vc-locking-user nil)
1819 (message "Reverting %s...done" file)
1822 (defun vc-backend-steal (file &optional rev)
1823 ;; Steal the lock on the current workfile. Needs RCS 5.6.2 or later for -M.
1824 (message "Stealing lock on %s..." file)
1825 (vc-backend-dispatch file
1826 (progn ;SCCS
1827 (vc-do-command 0 "unget" file 'MASTER "-n" (if rev (concat "-r" rev)))
1828 (vc-do-command 0 "get" file 'MASTER "-g" (if rev (concat "-r" rev)))
1830 (vc-do-command 0 "rcs" file 'MASTER ;RCS
1831 "-M" (concat "-u" rev) (concat "-l" rev))
1832 (error "You cannot steal a CVS lock; there are no CVS locks to steal.") ;CVS
1834 (vc-file-setprop file 'vc-locking-user (user-login-name))
1835 (message "Stealing lock on %s...done" file)
1838 (defun vc-backend-uncheck (file target)
1839 ;; Undo the latest checkin. Note: this code will have to get a lot
1840 ;; smarter when we support multiple branches.
1841 (message "Removing last change from %s..." file)
1842 (vc-backend-dispatch file
1843 (vc-do-command 0 "rmdel" file 'MASTER (concat "-r" target))
1844 (vc-do-command 0 "rcs" file 'MASTER (concat "-o" target))
1845 (error "Unchecking files under CVS is dangerous and not supported in VC.")
1847 (message "Removing last change from %s...done" file)
1850 (defun vc-backend-print-log (file)
1851 ;; Print change log associated with FILE to buffer *vc*.
1852 (vc-backend-dispatch
1853 file
1854 (vc-do-command 0 "prs" file 'MASTER)
1855 (vc-do-command 0 "rlog" file 'MASTER)
1856 (vc-do-command 0 "cvs" file 'BASE "rlog")))
1858 (defun vc-backend-assign-name (file name)
1859 ;; Assign to a FILE's latest version a given NAME.
1860 (vc-backend-dispatch file
1861 (vc-add-triple name file (vc-latest-version file)) ;; SCCS
1862 (vc-do-command 0 "rcs" file 'MASTER (concat "-n" name ":")) ;; RCS
1863 (vc-do-command 0 "cvs" file 'BASE "tag" name) ;; CVS
1867 (defun vc-backend-diff (file &optional oldvers newvers cmp)
1868 ;; Get a difference report between two versions of FILE.
1869 ;; Get only a brief comparison report if CMP, a difference report otherwise.
1870 (let ((backend (vc-backend-deduce file)))
1871 (cond
1872 ((eq backend 'SCCS)
1873 (setq oldvers (vc-lookup-triple file oldvers))
1874 (setq newvers (vc-lookup-triple file newvers))))
1875 (cond
1876 ;; SCCS and RCS shares a lot of code.
1877 ((or (eq backend 'SCCS) (eq backend 'RCS))
1878 (let* ((command (if (eq backend 'SCCS)
1879 "vcdiff"
1880 "rcsdiff"))
1881 (options (append (list (and cmp "--brief")
1882 "-q"
1883 (and oldvers (concat "-r" oldvers))
1884 (and newvers (concat "-r" newvers)))
1885 (and (not cmp)
1886 (if (listp diff-switches)
1887 diff-switches
1888 (list diff-switches)))))
1889 (status (apply 'vc-do-command 2 command file options)))
1890 ;; Some RCS versions don't understand "--brief"; work around this.
1891 (if (eq status 2)
1892 (apply 'vc-do-command 1 command file 'MASTER
1893 (if cmp (cdr options) options))
1894 status)))
1895 ;; CVS is different.
1896 ;; cmp is not yet implemented -- we always do a full diff.
1897 ((eq backend 'CVS)
1898 (if (string= (vc-file-getprop file 'vc-your-latest-version) "0") ;CVS
1899 ;; This file is added but not yet committed; there is no master file.
1900 ;; diff it against /dev/null.
1901 (if (or oldvers newvers)
1902 (error "No revisions of %s exists" file)
1903 (apply 'vc-do-command
1904 1 "diff" file 'BASE "/dev/null"
1905 (if (listp diff-switches)
1906 diff-switches
1907 (list diff-switches))))
1908 (apply 'vc-do-command
1909 1 "cvs" file 'BASE "diff"
1910 (and oldvers (concat "-r" oldvers))
1911 (and newvers (concat "-r" newvers))
1912 (if (listp diff-switches)
1913 diff-switches
1914 (list diff-switches)))))
1916 (vc-registration-error file)))))
1918 (defun vc-backend-merge-news (file)
1919 ;; Merge in any new changes made to FILE.
1920 (vc-backend-dispatch
1921 file
1922 (error "vc-backend-merge-news not meaningful for SCCS files") ;SCCS
1923 (error "vc-backend-merge-news not meaningful for RCS files") ;RCS
1924 (vc-do-command 1 "cvs" file 'BASE "update") ;CVS
1927 (defun vc-check-headers ()
1928 "Check if the current file has any headers in it."
1929 (interactive)
1930 (save-excursion
1931 (goto-char (point-min))
1932 (vc-backend-dispatch buffer-file-name
1933 (re-search-forward "%[MIRLBSDHTEGUYFPQCZWA]%" nil t) ;; SCCS
1934 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t) ;; RCS
1935 'RCS ;; CVS works like RCS in this regard.
1939 ;; Back-end-dependent stuff ends here.
1941 ;; Set up key bindings for use while editing log messages
1943 (defun vc-log-mode ()
1944 "Minor mode for driving version-control tools.
1945 These bindings are added to the global keymap when you enter this mode:
1946 \\[vc-next-action] perform next logical version-control operation on current file
1947 \\[vc-register] register current file
1948 \\[vc-toggle-read-only] like next-action, but won't register files
1949 \\[vc-insert-headers] insert version-control headers in current file
1950 \\[vc-print-log] display change history of current file
1951 \\[vc-revert-buffer] revert buffer to latest version
1952 \\[vc-cancel-version] undo latest checkin
1953 \\[vc-diff] show diffs between file versions
1954 \\[vc-version-other-window] visit old version in another window
1955 \\[vc-directory] show all files locked by any user in or below .
1956 \\[vc-update-change-log] add change log entry from recent checkins
1958 While you are entering a change log message for a version, the following
1959 additional bindings will be in effect.
1961 \\[vc-finish-logentry] proceed with check in, ending log message entry
1963 Whenever you do a checkin, your log comment is added to a ring of
1964 saved comments. These can be recalled as follows:
1966 \\[vc-next-comment] replace region with next message in comment ring
1967 \\[vc-previous-comment] replace region with previous message in comment ring
1968 \\[vc-comment-search-reverse] search backward for regexp in the comment ring
1969 \\[vc-comment-search-forward] search backward for regexp in the comment ring
1971 Entry to the change-log submode calls the value of text-mode-hook, then
1972 the value of vc-log-mode-hook.
1974 Global user options:
1975 vc-initial-comment If non-nil, require user to enter a change
1976 comment upon first checkin of the file.
1978 vc-keep-workfiles Non-nil value prevents workfiles from being
1979 deleted when changes are checked in
1981 vc-suppress-confirm Suppresses some confirmation prompts,
1982 notably for reversions.
1984 vc-header-alist Which keywords to insert when adding headers
1985 with \\[vc-insert-headers]. Defaults to
1986 '(\"\%\W\%\") under SCCS, '(\"\$Id\$\") under
1987 RCS and CVS.
1989 vc-static-header-alist By default, version headers inserted in C files
1990 get stuffed in a static string area so that
1991 ident(RCS/CVS) or what(SCCS) can see them in
1992 the compiled object code. You can override
1993 this by setting this variable to nil, or change
1994 the header template by changing it.
1996 vc-command-messages if non-nil, display run messages from the
1997 actual version-control utilities (this is
1998 intended primarily for people hacking vc
1999 itself).
2001 (interactive)
2002 (set-syntax-table text-mode-syntax-table)
2003 (use-local-map vc-log-entry-mode)
2004 (setq local-abbrev-table text-mode-abbrev-table)
2005 (setq major-mode 'vc-log-mode)
2006 (setq mode-name "VC-Log")
2007 (make-local-variable 'vc-log-file)
2008 (make-local-variable 'vc-log-version)
2009 (make-local-variable 'vc-comment-ring-index)
2010 (set-buffer-modified-p nil)
2011 (setq buffer-file-name nil)
2012 (run-hooks 'text-mode-hook 'vc-log-mode-hook)
2015 ;; Initialization code, to be done just once at load-time
2016 (if vc-log-entry-mode
2018 (setq vc-log-entry-mode (make-sparse-keymap))
2019 (define-key vc-log-entry-mode "\M-n" 'vc-next-comment)
2020 (define-key vc-log-entry-mode "\M-p" 'vc-previous-comment)
2021 (define-key vc-log-entry-mode "\M-r" 'vc-comment-search-reverse)
2022 (define-key vc-log-entry-mode "\M-s" 'vc-comment-search-forward)
2023 (define-key vc-log-entry-mode "\C-c\C-c" 'vc-finish-logentry)
2026 ;;; These things should probably be generally available
2028 (defun vc-file-tree-walk (func &rest args)
2029 "Walk recursively through default directory.
2030 Invoke FUNC f ARGS on each non-directory file f underneath it."
2031 (vc-file-tree-walk-internal default-directory func args)
2032 (message "Traversing directory %s...done" default-directory))
2034 (defun vc-file-tree-walk-internal (file func args)
2035 (if (not (file-directory-p file))
2036 (apply func file args)
2037 (message "Traversing directory %s..." file)
2038 (let ((dir (file-name-as-directory file)))
2039 (mapcar
2040 (function
2041 (lambda (f) (or
2042 (string-equal f ".")
2043 (string-equal f "..")
2044 (let ((dirf (concat dir f)))
2046 (file-symlink-p dirf) ;; Avoid possible loops
2047 (vc-file-tree-walk-internal dirf func args))))))
2048 (directory-files dir)))))
2050 (defun vc-dir-all-files (func &rest args)
2051 "Invoke FUNC f ARGS on each regular file f in default directory."
2052 (let ((dir default-directory))
2053 (message "Scanning directory %s..." dir)
2054 (mapcar (function (lambda (f)
2055 (let ((dirf (expand-file-name f dir)))
2056 (if (file-regular-p dirf)
2057 (apply func dirf args)))))
2058 (directory-files dir))
2059 (message "Scanning directory %s...done" dir)))
2061 (provide 'vc)
2063 ;;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
2065 ;;; These may be useful to anyone who has to debug or extend the package.
2066 ;;;
2067 ;;; A fundamental problem in VC is that there are time windows between
2068 ;;; vc-next-action's computations of the file's version-control state and
2069 ;;; the actions that change it. This is a window open to lossage in a
2070 ;;; multi-user environment; someone else could nip in and change the state
2071 ;;; of the master during it.
2072 ;;;
2073 ;;; The performance problem is that rlog/prs calls are very expensive; we want
2074 ;;; to avoid them as much as possible.
2075 ;;;
2076 ;;; ANALYSIS:
2077 ;;;
2078 ;;; The performance problem, it turns out, simplifies in practice to the
2079 ;;; problem of making vc-locking-user fast. The two other functions that call
2080 ;;; prs/rlog will not be so commonly used that the slowdown is a problem; one
2081 ;;; makes snapshots, the other deletes the calling user's last change in the
2082 ;;; master.
2083 ;;;
2084 ;;; The race condition implies that we have to either (a) lock the master
2085 ;;; during the entire execution of vc-next-action, or (b) detect and
2086 ;;; recover from errors resulting from dispatch on an out-of-date state.
2087 ;;;
2088 ;;; Alternative (a) appears to be unfeasible. The problem is that we can't
2089 ;;; guarantee that the lock will ever be removed. Suppose a user starts a
2090 ;;; checkin, the change message buffer pops up, and the user, having wandered
2091 ;;; off to do something else, simply forgets about it?
2092 ;;;
2093 ;;; Alternative (b), on the other hand, works well with a cheap way to speed up
2094 ;;; vc-locking-user. Usually, if a file is registered, we can read its locked/
2095 ;;; unlocked state and its current owner from its permissions.
2096 ;;;
2097 ;;; This shortcut will fail if someone has manually changed the workfile's
2098 ;;; permissions; also if developers are munging the workfile in several
2099 ;;; directories, with symlinks to a master (in this latter case, the
2100 ;;; permissions shortcut will fail to detect a lock asserted from another
2101 ;;; directory).
2102 ;;;
2103 ;;; Note that these cases correspond exactly to the errors which could happen
2104 ;;; because of a competing checkin/checkout race in between two instances of
2105 ;;; vc-next-action.
2106 ;;;
2107 ;;; For VC's purposes, a workfile/master pair may have the following states:
2108 ;;;
2109 ;;; A. Unregistered. There is a workfile, there is no master.
2110 ;;;
2111 ;;; B. Registered and not locked by anyone.
2112 ;;;
2113 ;;; C. Locked by calling user and unchanged.
2114 ;;;
2115 ;;; D. Locked by the calling user and changed.
2116 ;;;
2117 ;;; E. Locked by someone other than the calling user.
2118 ;;;
2119 ;;; This makes for 25 states and 20 error conditions. Here's the matrix:
2120 ;;;
2121 ;;; VC's idea of state
2122 ;;; |
2123 ;;; V Actual state RCS action SCCS action Effect
2124 ;;; A B C D E
2125 ;;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
2126 ;;; B 5 . 6 7 8 co -l get -e checkout
2127 ;;; C 9 10 . 11 12 co -u unget; get revert
2128 ;;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
2129 ;;; E 17 18 19 20 . rcs -u -M ; rcs -l unget -n ; get -g steal lock
2130 ;;;
2131 ;;; All commands take the master file name as a last argument (not shown).
2132 ;;;
2133 ;;; In the discussion below, a "self-race" is a pathological situation in
2134 ;;; which VC operations are being attempted simultaneously by two or more
2135 ;;; Emacsen running under the same username.
2136 ;;;
2137 ;;; The vc-next-action code has the following windows:
2138 ;;;
2139 ;;; Window P:
2140 ;;; Between the check for existence of a master file and the call to
2141 ;;; admin/checkin in vc-buffer-admin (apparent state A). This window may
2142 ;;; never close if the initial-comment feature is on.
2143 ;;;
2144 ;;; Window Q:
2145 ;;; Between the call to vc-workfile-unchanged-p in and the immediately
2146 ;;; following revert (apparent state C).
2147 ;;;
2148 ;;; Window R:
2149 ;;; Between the call to vc-workfile-unchanged-p in and the following
2150 ;;; checkin (apparent state D). This window may never close.
2151 ;;;
2152 ;;; Window S:
2153 ;;; Between the unlock and the immediately following checkout during a
2154 ;;; revert operation (apparent state C). Included in window Q.
2155 ;;;
2156 ;;; Window T:
2157 ;;; Between vc-locking-user and the following checkout (apparent state B).
2158 ;;;
2159 ;;; Window U:
2160 ;;; Between vc-locking-user and the following revert (apparent state C).
2161 ;;; Includes windows Q and S.
2162 ;;;
2163 ;;; Window V:
2164 ;;; Between vc-locking-user and the following checkin (apparent state
2165 ;;; D). This window may never be closed if the user fails to complete the
2166 ;;; checkin message. Includes window R.
2167 ;;;
2168 ;;; Window W:
2169 ;;; Between vc-locking-user and the following steal-lock (apparent
2170 ;;; state E). This window may never close if the user fails to complete
2171 ;;; the steal-lock message. Includes window X.
2172 ;;;
2173 ;;; Window X:
2174 ;;; Between the unlock and the immediately following re-lock during a
2175 ;;; steal-lock operation (apparent state E). This window may never cloce
2176 ;;; if the user fails to complete the steal-lock message.
2177 ;;;
2178 ;;; Errors:
2179 ;;;
2180 ;;; Apparent state A ---
2182 ;;; 1. File looked unregistered but is actually registered and not locked.
2183 ;;;
2184 ;;; Potential cause: someone else's admin during window P, with
2185 ;;; caller's admin happening before their checkout.
2186 ;;;
2187 ;;; RCS: ci will fail with a "no lock set by <user>" message.
2188 ;;; SCCS: admin will fail with error (ad19).
2189 ;;;
2190 ;;; We can let these errors be passed up to the user.
2191 ;;;
2192 ;;; 2. File looked unregistered but is actually locked by caller, unchanged.
2193 ;;;
2194 ;;; Potential cause: self-race during window P.
2195 ;;;
2196 ;;; RCS: will revert the file to the last saved version and unlock it.
2197 ;;; SCCS: will fail with error (ad19).
2198 ;;;
2199 ;;; Either of these consequences is acceptable.
2200 ;;;
2201 ;;; 3. File looked unregistered but is actually locked by caller, changed.
2202 ;;;
2203 ;;; Potential cause: self-race during window P.
2204 ;;;
2205 ;;; RCS: will register the caller's workfile as a delta with a
2206 ;;; null change comment (the -t- switch will be ignored).
2207 ;;; SCCS: will fail with error (ad19).
2208 ;;;
2209 ;;; 4. File looked unregistered but is locked by someone else.
2210 ;;;
2211 ;;; Potential cause: someone else's admin during window P, with
2212 ;;; caller's admin happening *after* their checkout.
2213 ;;;
2214 ;;; RCS: will fail with a "no lock set by <user>" message.
2215 ;;; SCCS: will fail with error (ad19).
2216 ;;;
2217 ;;; We can let these errors be passed up to the user.
2218 ;;;
2219 ;;; Apparent state B ---
2221 ;;; 5. File looked registered and not locked, but is actually unregistered.
2222 ;;;
2223 ;;; Potential cause: master file got nuked during window P.
2224 ;;;
2225 ;;; RCS: will fail with "RCS/<file>: No such file or directory"
2226 ;;; SCCS: will fail with error ut4.
2227 ;;;
2228 ;;; We can let these errors be passed up to the user.
2229 ;;;
2230 ;;; 6. File looked registered and not locked, but is actually locked by the
2231 ;;; calling user and unchanged.
2232 ;;;
2233 ;;; Potential cause: self-race during window T.
2234 ;;;
2235 ;;; RCS: in the same directory as the previous workfile, co -l will fail
2236 ;;; with "co error: writable foo exists; checkout aborted". In any other
2237 ;;; directory, checkout will succeed.
2238 ;;; SCCS: will fail with ge17.
2239 ;;;
2240 ;;; Either of these consequences is acceptable.
2241 ;;;
2242 ;;; 7. File looked registered and not locked, but is actually locked by the
2243 ;;; calling user and changed.
2244 ;;;
2245 ;;; As case 6.
2246 ;;;
2247 ;;; 8. File looked registered and not locked, but is actually locked by another
2248 ;;; user.
2249 ;;;
2250 ;;; Potential cause: someone else checks it out during window T.
2251 ;;;
2252 ;;; RCS: co error: revision 1.3 already locked by <user>
2253 ;;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
2254 ;;;
2255 ;;; We can let these errors be passed up to the user.
2256 ;;;
2257 ;;; Apparent state C ---
2259 ;;; 9. File looks locked by calling user and unchanged, but is unregistered.
2260 ;;;
2261 ;;; As case 5.
2262 ;;;
2263 ;;; 10. File looks locked by calling user and unchanged, but is actually not
2264 ;;; locked.
2265 ;;;
2266 ;;; Potential cause: a self-race in window U, or by the revert's
2267 ;;; landing during window X of some other user's steal-lock or window S
2268 ;;; of another user's revert.
2269 ;;;
2270 ;;; RCS: succeeds, refreshing the file from the identical version in
2271 ;;; the master.
2272 ;;; SCCS: fails with error ut4 (p file nonexistent).
2274 ;;; Either of these consequences is acceptable.
2275 ;;;
2276 ;;; 11. File is locked by calling user. It looks unchanged, but is actually
2277 ;;; changed.
2278 ;;;
2279 ;;; Potential cause: the file would have to be touched by a self-race
2280 ;;; during window Q.
2281 ;;;
2282 ;;; The revert will succeed, removing whatever changes came with
2283 ;;; the touch. It is theoretically possible that work could be lost.
2284 ;;;
2285 ;;; 12. File looks like it's locked by the calling user and unchanged, but
2286 ;;; it's actually locked by someone else.
2287 ;;;
2288 ;;; Potential cause: a steal-lock in window V.
2289 ;;;
2290 ;;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
2291 ;;; SCCS: fails with error un2
2292 ;;;
2293 ;;; We can pass these errors up to the user.
2294 ;;;
2295 ;;; Apparent state D ---
2297 ;;; 13. File looks like it's locked by the calling user and changed, but it's
2298 ;;; actually unregistered.
2299 ;;;
2300 ;;; Potential cause: master file got nuked during window P.
2301 ;;;
2302 ;;; RCS: Checks in the user's version as an initial delta.
2303 ;;; SCCS: will fail with error ut4.
2305 ;;; This case is kind of nasty. It means VC may fail to detect the
2306 ;;; loss of previous version information.
2307 ;;;
2308 ;;; 14. File looks like it's locked by the calling user and changed, but it's
2309 ;;; actually unlocked.
2310 ;;;
2311 ;;; Potential cause: self-race in window V, or the checkin happening
2312 ;;; during the window X of someone else's steal-lock or window S of
2313 ;;; someone else's revert.
2314 ;;;
2315 ;;; RCS: ci will fail with "no lock set by <user>".
2316 ;;; SCCS: delta will fail with error ut4.
2317 ;;;
2318 ;;; 15. File looks like it's locked by the calling user and changed, but it's
2319 ;;; actually locked by the calling user and unchanged.
2320 ;;;
2321 ;;; Potential cause: another self-race --- a whole checkin/checkout
2322 ;;; sequence by the calling user would have to land in window R.
2323 ;;;
2324 ;;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
2325 ;;; RCS: reverts to the file state as of the second user's checkin, leaving
2326 ;;; the file unlocked.
2328 ;;; It is theoretically possible that work could be lost under RCS.
2329 ;;;
2330 ;;; 16. File looks like it's locked by the calling user and changed, but it's
2331 ;;; actually locked by a different user.
2332 ;;;
2333 ;;; RCS: ci error: no lock set by <user>
2334 ;;; SCCS: unget will fail with error un2
2335 ;;;
2336 ;;; We can pass these errors up to the user.
2337 ;;;
2338 ;;; Apparent state E ---
2340 ;;; 17. File looks like it's locked by some other user, but it's actually
2341 ;;; unregistered.
2342 ;;;
2343 ;;; As case 13.
2344 ;;;
2345 ;;; 18. File looks like it's locked by some other user, but it's actually
2346 ;;; unlocked.
2347 ;;;
2348 ;;; Potential cause: someone released a lock during window W.
2349 ;;;
2350 ;;; RCS: The calling user will get the lock on the file.
2351 ;;; SCCS: unget -n will fail with cm4.
2352 ;;;
2353 ;;; Either of these consequences will be OK.
2354 ;;;
2355 ;;; 19. File looks like it's locked by some other user, but it's actually
2356 ;;; locked by the calling user and unchanged.
2357 ;;;
2358 ;;; Potential cause: the other user relinquishing a lock followed by
2359 ;;; a self-race, both in window W.
2360 ;;;
2361 ;;; Under both RCS and SCCS, both unlock and lock will succeed, making
2362 ;;; the sequence a no-op.
2363 ;;;
2364 ;;; 20. File looks like it's locked by some other user, but it's actually
2365 ;;; locked by the calling user and changed.
2366 ;;;
2367 ;;; As case 19.
2368 ;;;
2369 ;;; PROBLEM CASES:
2370 ;;;
2371 ;;; In order of decreasing severity:
2372 ;;;
2373 ;;; Cases 11 and 15 under RCS are the only one that potentially lose work.
2374 ;;; They would require a self-race for this to happen.
2375 ;;;
2376 ;;; Case 13 in RCS loses information about previous deltas, retaining
2377 ;;; only the information in the current workfile. This can only happen
2378 ;;; if the master file gets nuked in window P.
2379 ;;;
2380 ;;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
2381 ;;; no change comment in the master. This would require a self-race in
2382 ;;; window P or R respectively.
2383 ;;;
2384 ;;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
2385 ;;;
2386 ;;; Unfortunately, it appears to me that no recovery is possible in these
2387 ;;; cases. They don't yield error messages, so there's no way to tell that
2388 ;;; a race condition has occurred.
2389 ;;;
2390 ;;; All other cases don't change either the workfile or the master, and
2391 ;;; trigger command errors which the user will see.
2392 ;;;
2393 ;;; Thus, there is no explicit recovery code.
2395 ;;; vc.el ends here