.
[emacs.git] / lisp / vc.el
blob504ca7629960146281e9fc750298c75194ba43a4
1 ;;; vc.el --- drive a version-control system from within Emacs
3 ;; Copyright (C) 1992,93,94,95,96,97,98,2000,2001 Free Software Foundation, Inc.
5 ;; Author: FSF (see below for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7 ;; Keywords: tools
9 ;; $Id: vc.el,v 1.349 2003/02/05 23:13:21 lektu Exp $
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;;; Credits:
30 ;; VC was initially designed and implemented by Eric S. Raymond
31 ;; <esr@snark.thyrsus.com>. Over the years, many people have
32 ;; contributed substantial amounts of work to VC. These include:
33 ;; Per Cederqvist <ceder@lysator.liu.se>
34 ;; Paul Eggert <eggert@twinsun.com>
35 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
36 ;; Martin Lorentzson <martinl@gnu.org>
37 ;; Dave Love <fx@gnu.org>
38 ;; Stefan Monnier <monnier@cs.yale.edu>
39 ;; J.D. Smith <jdsmith@alum.mit.edu>
40 ;; Andre Spiegel <spiegel@gnu.org>
41 ;; Richard Stallman <rms@gnu.org>
42 ;; Thien-Thi Nguyen <ttn@gnu.org>
44 ;;; Commentary:
46 ;; This mode is fully documented in the Emacs user's manual.
48 ;; Supported version-control systems presently include SCCS, RCS, and CVS.
50 ;; Some features will not work with old RCS versions. Where
51 ;; appropriate, VC finds out which version you have, and allows or
52 ;; disallows those features (stealing locks, for example, works only
53 ;; from 5.6.2 onwards).
54 ;; Even initial checkins will fail if your RCS version is so old that ci
55 ;; doesn't understand -t-; this has been known to happen to people running
56 ;; NExTSTEP 3.0.
58 ;; You can support the RCS -x option by customizing vc-rcs-master-templates.
60 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff
61 ;; to be installed somewhere on Emacs's path for executables.
63 ;; If your site uses the ChangeLog convention supported by Emacs, the
64 ;; function vc-comment-to-change-log should prove a useful checkin hook.
66 ;; The vc code maintains some internal state in order to reduce expensive
67 ;; version-control operations to a minimum. Some names are only computed
68 ;; once. If you perform version control operations with RCS/SCCS/CVS while
69 ;; vc's back is turned, or move/rename master files while vc is running,
70 ;; vc may get seriously confused. Don't do these things!
72 ;; Developer's notes on some concurrency issues are included at the end of
73 ;; the file.
75 ;; ADDING SUPPORT FOR OTHER BACKENDS
77 ;; VC can use arbitrary version control systems as a backend. To add
78 ;; support for a new backend named SYS, write a library vc-sys.el that
79 ;; contains functions of the form `vc-sys-...' (note that SYS is in lower
80 ;; case for the function and library names). VC will use that library if
81 ;; you put the symbol SYS somewhere into the list of
82 ;; `vc-handled-backends'. Then, for example, if `vc-sys-registered'
83 ;; returns non-nil for a file, all SYS-specific versions of VC commands
84 ;; will be available for that file.
86 ;; VC keeps some per-file information in the form of properties (see
87 ;; vc-file-set/getprop in vc-hooks.el). The backend-specific functions
88 ;; do not generally need to be aware of these properties. For example,
89 ;; `vc-sys-workfile-version' should compute the workfile version and
90 ;; return it; it should not look it up in the property, and it needn't
91 ;; store it there either. However, if a backend-specific function does
92 ;; store a value in a property, that value takes precedence over any
93 ;; value that the generic code might want to set (check for uses of
94 ;; the macro `with-vc-properties' in vc.el).
96 ;; In the list of functions below, each identifier needs to be prepended
97 ;; with `vc-sys-'. Some of the functions are mandatory (marked with a
98 ;; `*'), others are optional (`-').
100 ;; STATE-QUERYING FUNCTIONS
102 ;; * registered (file)
104 ;; Return non-nil if FILE is registered in this backend.
106 ;; * state (file)
108 ;; Return the current version control state of FILE. For a list of
109 ;; possible values, see `vc-state'. This function should do a full and
110 ;; reliable state computation; it is usually called immediately after
111 ;; C-x v v. If you want to use a faster heuristic when visiting a
112 ;; file, put that into `state-heuristic' below.
114 ;; - state-heuristic (file)
116 ;; If provided, this function is used to estimate the version control
117 ;; state of FILE at visiting time. It should be considerably faster
118 ;; than the implementation of `state'. For a list of possible values,
119 ;; see the doc string of `vc-state'.
121 ;; - dir-state (dir)
123 ;; If provided, this function is used to find the version control state
124 ;; of all files in DIR in a fast way. The function should not return
125 ;; anything, but rather store the files' states into the corresponding
126 ;; `vc-state' properties.
128 ;; * workfile-version (file)
130 ;; Return the current workfile version of FILE.
132 ;; - latest-on-branch-p (file)
134 ;; Return non-nil if the current workfile version of FILE is the latest
135 ;; on its branch. The default implementation always returns t, which
136 ;; means that working with non-current versions is not supported by
137 ;; default.
139 ;; * checkout-model (file)
141 ;; Indicate whether FILE needs to be "checked out" before it can be
142 ;; edited. See `vc-checkout-model' for a list of possible values.
144 ;; - workfile-unchanged-p (file)
146 ;; Return non-nil if FILE is unchanged from its current workfile
147 ;; version. This function should do a brief comparison of FILE's
148 ;; contents with those of the master version. If the backend does not
149 ;; have such a brief-comparison feature, the default implementation of
150 ;; this function can be used, which delegates to a full
151 ;; vc-BACKEND-diff. (Note that vc-BACKEND-diff must not run
152 ;; asynchronously in this case.)
154 ;; - mode-line-string (file)
156 ;; If provided, this function should return the VC-specific mode line
157 ;; string for FILE. The default implementation deals well with all
158 ;; states that `vc-state' can return.
160 ;; - dired-state-info (file)
162 ;; Translate the `vc-state' property of FILE into a string that can be
163 ;; used in a vc-dired buffer. The default implementation deals well
164 ;; with all states that `vc-state' can return.
166 ;; STATE-CHANGING FUNCTIONS
168 ;; * register (file &optional rev comment)
170 ;; Register FILE in this backend. Optionally, an initial revision REV
171 ;; and an initial description of the file, COMMENT, may be specified.
172 ;; The implementation should pass the value of vc-register-switches
173 ;; to the backend command.
175 ;; - init-version (file)
177 ;; The initial version to use when registering FILE if one is not
178 ;; specified by the user. If not provided, the variable
179 ;; vc-default-init-version is used instead.
181 ;; - responsible-p (file)
183 ;; Return non-nil if this backend considers itself "responsible" for
184 ;; FILE, which can also be a directory. This function is used to find
185 ;; out what backend to use for registration of new files and for things
186 ;; like change log generation. The default implementation always
187 ;; returns nil.
189 ;; - could-register (file)
191 ;; Return non-nil if FILE could be registered under this backend. The
192 ;; default implementation always returns t.
194 ;; - receive-file (file rev)
196 ;; Let this backend "receive" a file that is already registered under
197 ;; another backend. The default implementation simply calls `register'
198 ;; for FILE, but it can be overridden to do something more specific,
199 ;; e.g. keep revision numbers consistent or choose editing modes for
200 ;; FILE that resemble those of the other backend.
202 ;; - unregister (file)
204 ;; Unregister FILE from this backend. This is only needed if this
205 ;; backend may be used as a "more local" backend for temporary editing.
207 ;; * checkin (file rev comment)
209 ;; Commit changes in FILE to this backend. If REV is non-nil, that
210 ;; should become the new revision number. COMMENT is used as a
211 ;; check-in comment. The implementation should pass the value of
212 ;; vc-checkin-switches to the backend command.
214 ;; * find-version (file rev buffer)
216 ;; Fetch revision REV of file FILE and put it into BUFFER.
217 ;; If REV is the empty string, fetch the head of the trunk.
218 ;; The implementation should pass the value of vc-checkout-switches
219 ;; to the backend command.
221 ;; * checkout (file &optional editable rev)
223 ;; Check out revision REV of FILE into the working area. If EDITABLE
224 ;; is non-nil, FILE should be writable by the user and if locking is
225 ;; used for FILE, a lock should also be set. If REV is non-nil, that
226 ;; is the revision to check out (default is current workfile version).
227 ;; If REV is t, that means to check out the head of the current branch;
228 ;; if it is the empty string, check out the head of the trunk.
229 ;; The implementation should pass the value of vc-checkout-switches
230 ;; to the backend command.
232 ;; * revert (file &optional contents-done)
234 ;; Revert FILE back to the current workfile version. If optional
235 ;; arg CONTENTS-DONE is non-nil, then the contents of FILE have
236 ;; already been reverted from a version backup, and this function
237 ;; only needs to update the status of FILE within the backend.
239 ;; - cancel-version (file editable)
241 ;; Cancel the current workfile version of FILE, i.e. remove it from the
242 ;; master. EDITABLE non-nil means that FILE should be writable
243 ;; afterwards, and if locking is used for FILE, then a lock should also
244 ;; be set. If this function is not provided, trying to cancel a
245 ;; version is caught as an error.
247 ;; - merge (file rev1 rev2)
249 ;; Merge the changes between REV1 and REV2 into the current working file.
251 ;; - merge-news (file)
253 ;; Merge recent changes from the current branch into FILE.
255 ;; - steal-lock (file &optional version)
257 ;; Steal any lock on the current workfile version of FILE, or on
258 ;; VERSION if that is provided. This function is only needed if
259 ;; locking is used for files under this backend, and if files can
260 ;; indeed be locked by other users.
262 ;; HISTORY FUNCTIONS
264 ;; * print-log (file)
266 ;; Insert the revision log of FILE into the *vc* buffer.
268 ;; - show-log-entry (version)
270 ;; If provided, search the log entry for VERSION in the current buffer,
271 ;; and make sure it is displayed in the buffer's window. The default
272 ;; implementation of this function works for RCS-style logs.
274 ;; - wash-log (file)
276 ;; Remove all non-comment information from the output of print-log. The
277 ;; default implementation of this function works for RCS-style logs.
279 ;; - logentry-check ()
281 ;; If defined, this function is run to find out whether the user
282 ;; entered a valid log entry for check-in. The log entry is in the
283 ;; current buffer, and if it is not a valid one, the function should
284 ;; throw an error.
286 ;; - comment-history (file)
288 ;; Return a string containing all log entries that were made for FILE.
289 ;; This is used for transferring a file from one backend to another,
290 ;; retaining comment information. The default implementation of this
291 ;; function does this by calling print-log and then wash-log, and
292 ;; returning the resulting buffer contents as a string.
294 ;; - update-changelog (files)
296 ;; Using recent log entries, create ChangeLog entries for FILES, or for
297 ;; all files at or below the default-directory if FILES is nil. The
298 ;; default implementation runs rcs2log, which handles RCS- and
299 ;; CVS-style logs.
301 ;; * diff (file &optional rev1 rev2)
303 ;; Insert the diff for FILE into the *vc-diff* buffer. If REV1 and
304 ;; REV2 are non-nil, report differences from REV1 to REV2. If REV1
305 ;; is nil, use the current workfile version (as found in the
306 ;; repository) as the older version; if REV2 is nil, use the current
307 ;; workfile contents as the newer version. This function should
308 ;; pass the value of (vc-diff-switches-list BACKEND) to the backend
309 ;; command. It should return a status of either 0 (no differences
310 ;; found), or 1 (either non-empty diff or the diff is run
311 ;; asynchronously).
313 ;; - diff-tree (dir &optional rev1 rev2)
315 ;; Insert the diff for all files at and below DIR into the *vc-diff*
316 ;; buffer. The meaning of REV1 and REV2 is the same as for
317 ;; vc-BACKEND-diff. The default implementation does an explicit tree
318 ;; walk, calling vc-BACKEND-diff for each individual file.
320 ;; - annotate-command (file buf rev)
322 ;; If this function is provided, it should produce an annotated version
323 ;; of FILE in BUF, relative to version REV. This is currently only
324 ;; implemented for CVS, using the `cvs annotate' command.
326 ;; - annotate-time ()
328 ;; Only required if `annotate-command' is defined for the backend.
329 ;; Return the time of the next line of annotation at or after point,
330 ;; as a floating point fractional number of days. The helper
331 ;; function `vc-annotate-convert-time' may be useful for converting
332 ;; multi-part times as returned by `current-time' and `encode-time'
333 ;; to this format. Return nil if no more lines of annotation appear
334 ;; in the buffer. You can safely assume that point is placed at the
335 ;; beginning of each line, starting at `point-min'. The buffer that
336 ;; point is placed in is the Annotate output, as defined by the
337 ;; relevant backend.
339 ;; - annotate-current-time ()
341 ;; Only required if `annotate-command' is defined for the backend,
342 ;; AND you'd like the current time considered to be anything besides
343 ;; (vs-annotate-convert-time (current-time)) -- i.e. the current
344 ;; time with hours, minutes, and seconds included. Probably safe to
345 ;; ignore. Return the current-time, in units of fractional days.
347 ;; SNAPSHOT SYSTEM
349 ;; - create-snapshot (dir name branchp)
351 ;; Take a snapshot of the current state of files under DIR and name it
352 ;; NAME. This should make sure that files are up-to-date before
353 ;; proceeding with the action. DIR can also be a file and if BRANCHP
354 ;; is specified, NAME should be created as a branch and DIR should be
355 ;; checked out under this new branch. The default implementation does
356 ;; not support branches but does a sanity check, a tree traversal and
357 ;; for each file calls `assign-name'.
359 ;; - assign-name (file name)
361 ;; Give name NAME to the current version of FILE, assuming it is
362 ;; up-to-date. Only used by the default version of `create-snapshot'.
364 ;; - retrieve-snapshot (dir name update)
366 ;; Retrieve a named snapshot of all registered files at or below DIR.
367 ;; If UPDATE is non-nil, then update buffers of any files in the
368 ;; snapshot that are currently visited. The default implementation
369 ;; does a sanity check whether there aren't any uncommitted changes at
370 ;; or below DIR, and then performs a tree walk, using the `checkout'
371 ;; function to retrieve the corresponding versions.
373 ;; MISCELLANEOUS
375 ;; - make-version-backups-p (file)
377 ;; Return non-nil if unmodified repository versions of FILE should be
378 ;; backed up locally. If this is done, VC can perform `diff' and
379 ;; `revert' operations itself, without calling the backend system. The
380 ;; default implementation always returns nil.
382 ;; - previous-version (file rev)
384 ;; Return the version number that precedes REV for FILE.
386 ;; - check-headers ()
388 ;; Return non-nil if the current buffer contains any version headers.
390 ;; - clear-headers ()
392 ;; In the current buffer, reset all version headers to their unexpanded
393 ;; form. This function should be provided if the state-querying code
394 ;; for this backend uses the version headers to determine the state of
395 ;; a file. This function will then be called whenever VC changes the
396 ;; version control state in such a way that the headers would give
397 ;; wrong information.
399 ;; - rename-file (old new)
401 ;; Rename file OLD to NEW, both in the working area and in the
402 ;; repository. If this function is not provided, the command
403 ;; `vc-rename-file' will signal an error.
405 ;;; Code:
407 (require 'vc-hooks)
408 (require 'ring)
409 (eval-when-compile
410 (require 'cl)
411 (require 'compile)
412 (require 'dired) ; for dired-map-over-marks macro
413 (require 'dired-aux)) ; for dired-kill-{line,tree}
415 (if (not (assoc 'vc-parent-buffer minor-mode-alist))
416 (setq minor-mode-alist
417 (cons '(vc-parent-buffer vc-parent-buffer-name)
418 minor-mode-alist)))
420 ;; General customization
422 (defgroup vc nil
423 "Version-control system in Emacs."
424 :group 'tools)
426 (defcustom vc-suppress-confirm nil
427 "*If non-nil, treat user as expert; suppress yes-no prompts on some things."
428 :type 'boolean
429 :group 'vc)
431 (defcustom vc-delete-logbuf-window t
432 "*If non-nil, delete the *VC-log* buffer and window after each logical action.
433 If nil, bury that buffer instead.
434 This is most useful if you have multiple windows on a frame and would like to
435 preserve the setting."
436 :type 'boolean
437 :group 'vc)
439 (defcustom vc-initial-comment nil
440 "*If non-nil, prompt for initial comment when a file is registered."
441 :type 'boolean
442 :group 'vc)
444 (defcustom vc-default-init-version "1.1"
445 "*A string used as the default version number when a new file is registered.
446 This can be overridden by giving a prefix argument to \\[vc-register]. This
447 can also be overridden by a particular VC backend."
448 :type 'string
449 :group 'vc
450 :version "20.3")
452 (defcustom vc-command-messages nil
453 "*If non-nil, display run messages from back-end commands."
454 :type 'boolean
455 :group 'vc)
457 (defcustom vc-checkin-switches nil
458 "*A string or list of strings specifying extra switches for checkin.
459 These are passed to the checkin program by \\[vc-checkin]."
460 :type '(choice (const :tag "None" nil)
461 (string :tag "Argument String")
462 (repeat :tag "Argument List"
463 :value ("")
464 string))
465 :group 'vc)
467 (defcustom vc-checkout-switches nil
468 "*A string or list of strings specifying extra switches for checkout.
469 These are passed to the checkout program by \\[vc-checkout]."
470 :type '(choice (const :tag "None" nil)
471 (string :tag "Argument String")
472 (repeat :tag "Argument List"
473 :value ("")
474 string))
475 :group 'vc)
477 (defcustom vc-register-switches nil
478 "*A string or list of strings; extra switches for registering a file.
479 These are passed to the checkin program by \\[vc-register]."
480 :type '(choice (const :tag "None" nil)
481 (string :tag "Argument String")
482 (repeat :tag "Argument List"
483 :value ("")
484 string))
485 :group 'vc)
487 (defcustom vc-dired-listing-switches "-al"
488 "*Switches passed to `ls' for vc-dired. MUST contain the `l' option."
489 :type 'string
490 :group 'vc
491 :version "21.1")
493 (defcustom vc-dired-recurse t
494 "*If non-nil, show directory trees recursively in VC Dired."
495 :type 'boolean
496 :group 'vc
497 :version "20.3")
499 (defcustom vc-dired-terse-display t
500 "*If non-nil, show only locked files in VC Dired."
501 :type 'boolean
502 :group 'vc
503 :version "20.3")
505 (defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS")
506 "*List of directory names to be ignored when walking directory trees."
507 :type '(repeat string)
508 :group 'vc)
510 (defconst vc-maximum-comment-ring-size 32
511 "Maximum number of saved comments in the comment ring.")
513 (defcustom vc-diff-switches nil
514 "*A string or list of strings specifying switches for diff under VC.
515 When running diff under a given BACKEND, VC concatenates the values of
516 `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to
517 get the switches for that command. Thus, `vc-diff-switches' should
518 contain switches that are specific to version control, but not
519 specific to any particular backend."
520 :type '(choice (const :tag "None" nil)
521 (string :tag "Argument String")
522 (repeat :tag "Argument List"
523 :value ("")
524 string))
525 :group 'vc
526 :version "21.1")
528 ;;;###autoload
529 (defcustom vc-checkout-hook nil
530 "*Normal hook (list of functions) run after checking out a file.
531 See `run-hooks'."
532 :type 'hook
533 :group 'vc
534 :version "21.1")
536 (defcustom vc-annotate-display-mode nil
537 "Which mode to color the output of \\[vc-annotate] with by default."
538 :type '(choice (const :tag "Default" nil)
539 (const :tag "Scale to Oldest" scale)
540 (const :tag "Scale Oldest->Newest" fullscale)
541 (number :tag "Specify Fractional Number of Days"
542 :value "20.5"))
543 :group 'vc)
545 ;;;###autoload
546 (defcustom vc-checkin-hook nil
547 "*Normal hook (list of functions) run after a checkin is done.
548 See `run-hooks'."
549 :type 'hook
550 :options '(vc-comment-to-change-log)
551 :group 'vc)
553 ;;;###autoload
554 (defcustom vc-before-checkin-hook nil
555 "*Normal hook (list of functions) run before a file is checked in.
556 See `run-hooks'."
557 :type 'hook
558 :group 'vc)
560 (defcustom vc-logentry-check-hook nil
561 "*Normal hook run by `vc-backend-logentry-check'.
562 Use this to impose your own rules on the entry in addition to any the
563 version control backend imposes itself."
564 :type 'hook
565 :group 'vc)
567 ;; Annotate customization
568 (defcustom vc-annotate-color-map
569 '(( 20. . "#FF0000")
570 ( 40. . "#FF3800")
571 ( 60. . "#FF7000")
572 ( 80. . "#FFA800")
573 (100. . "#FFE000")
574 (120. . "#E7FF00")
575 (140. . "#AFFF00")
576 (160. . "#77FF00")
577 (180. . "#3FFF00")
578 (200. . "#07FF00")
579 (220. . "#00FF31")
580 (240. . "#00FF69")
581 (260. . "#00FFA1")
582 (280. . "#00FFD9")
583 (300. . "#00EEFF")
584 (320. . "#00B6FF")
585 (340. . "#007EFF"))
586 "*Association list of age versus color, for \\[vc-annotate].
587 Ages are given in units of fractional days. Default is eighteen steps
588 using a twenty day increment."
589 :type 'alist
590 :group 'vc)
592 (defcustom vc-annotate-very-old-color "#0046FF"
593 "*Color for lines older than the current color range in \\[vc-annotate]]."
594 :type 'string
595 :group 'vc)
597 (defcustom vc-annotate-background "black"
598 "*Background color for \\[vc-annotate].
599 Default color is used if nil."
600 :type 'string
601 :group 'vc)
603 (defcustom vc-annotate-menu-elements '(2 0.5 0.1 0.01)
604 "*Menu elements for the mode-specific menu of VC-Annotate mode.
605 List of factors, used to expand/compress the time scale. See `vc-annotate'."
606 :type '(repeat number)
607 :group 'vc)
609 ;; vc-annotate functionality (CVS only).
610 (defvar vc-annotate-mode nil
611 "Variable indicating if VC-Annotate mode is active.")
613 (defvar vc-annotate-mode-map
614 (let ((m (make-sparse-keymap)))
615 (define-key m [menu-bar] (make-sparse-keymap "VC-Annotate"))
617 "Local keymap used for VC-Annotate mode.")
619 (defvar vc-annotate-mode-menu nil
620 "Local keymap used for VC-Annotate mode's menu bar menu.")
622 ;; Header-insertion hair
624 (defcustom vc-static-header-alist
625 '(("\\.c$" .
626 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
627 "*Associate static header string templates with file types.
628 A \%s in the template is replaced with the first string associated with
629 the file's version control type in `vc-header-alist'."
630 :type '(repeat (cons :format "%v"
631 (regexp :tag "File Type")
632 (string :tag "Header String")))
633 :group 'vc)
635 (defcustom vc-comment-alist
636 '((nroff-mode ".\\\"" ""))
637 "*Special comment delimiters for generating VC headers.
638 Add an entry in this list if you need to override the normal `comment-start'
639 and `comment-end' variables. This will only be necessary if the mode language
640 is sensitive to blank lines."
641 :type '(repeat (list :format "%v"
642 (symbol :tag "Mode")
643 (string :tag "Comment Start")
644 (string :tag "Comment End")))
645 :group 'vc)
647 (defcustom vc-checkout-carefully (= (user-uid) 0)
648 "*Non-nil means be extra-careful in checkout.
649 Verify that the file really is not locked
650 and that its contents match what the master file says."
651 :type 'boolean
652 :group 'vc)
653 (make-obsolete-variable 'vc-checkout-carefully
654 "the corresponding checks are always done now."
655 "21.1")
658 ;; The main keymap
660 ;; Initialization code, to be done just once at load-time
661 (defvar vc-log-mode-map
662 (let ((map (make-sparse-keymap)))
663 (set-keymap-parent map text-mode-map)
664 (define-key map "\M-n" 'vc-next-comment)
665 (define-key map "\M-p" 'vc-previous-comment)
666 (define-key map "\M-r" 'vc-comment-search-reverse)
667 (define-key map "\M-s" 'vc-comment-search-forward)
668 (define-key map "\C-c\C-c" 'vc-finish-logentry)
669 map))
670 ;; Compatibility with old name. Should we bother ?
671 (defvar vc-log-entry-mode vc-log-mode-map)
674 ;; Variables the user doesn't need to know about.
675 (defvar vc-log-operation nil)
676 (defvar vc-log-after-operation-hook nil)
677 (defvar vc-annotate-buffers nil
678 "Alist of current \"Annotate\" buffers and their corresponding backends.
679 The keys are \(BUFFER . BACKEND\). See also `vc-annotate-get-backend'.")
680 ;; In a log entry buffer, this is a local variable
681 ;; that points to the buffer for which it was made
682 ;; (either a file, or a VC dired buffer).
683 (defvar vc-parent-buffer nil)
684 (put 'vc-parent-buffer 'permanent-local t)
685 (defvar vc-parent-buffer-name nil)
686 (put 'vc-parent-buffer-name 'permanent-local t)
688 (defvar vc-log-file)
689 (defvar vc-log-version)
691 (defvar vc-dired-mode nil)
692 (make-variable-buffer-local 'vc-dired-mode)
694 (defvar vc-comment-ring (make-ring vc-maximum-comment-ring-size))
695 (defvar vc-comment-ring-index nil)
696 (defvar vc-last-comment-match "")
698 ;; functions that operate on RCS revision numbers. This code should
699 ;; also be moved into the backends. It stays for now, however, since
700 ;; it is used in code below.
701 (defun vc-trunk-p (rev)
702 "Return t if REV is a revision on the trunk."
703 (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))
705 (defun vc-branch-p (rev)
706 "Return t if REV is a branch revision."
707 (not (eq nil (string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev))))
709 ;;;###autoload
710 (defun vc-branch-part (rev)
711 "Return the branch part of a revision number REV."
712 (let ((index (string-match "\\.[0-9]+\\'" rev)))
713 (if index
714 (substring rev 0 index))))
716 (defun vc-minor-part (rev)
717 "Return the minor version number of a revision number REV."
718 (string-match "[0-9]+\\'" rev)
719 (substring rev (match-beginning 0) (match-end 0)))
721 (defun vc-default-previous-version (backend file rev)
722 "Guess the version number immediately preceding REV for FILE.
723 This default implementation works for <major>.<minor>-style version numbers
724 as used by RCS and CVS."
725 (let ((branch (vc-branch-part rev))
726 (minor-num (string-to-number (vc-minor-part rev))))
727 (when branch
728 (if (> minor-num 1)
729 ;; version does probably not start a branch or release
730 (concat branch "." (number-to-string (1- minor-num)))
731 (if (vc-trunk-p rev)
732 ;; we are at the beginning of the trunk --
733 ;; don't know anything to return here
735 ;; we are at the beginning of a branch --
736 ;; return version of starting point
737 (vc-branch-part branch))))))
739 ;; File property caching
741 (defun vc-clear-context ()
742 "Clear all cached file properties and the comment ring."
743 (interactive)
744 (fillarray vc-file-prop-obarray 0)
745 ;; Note: there is potential for minor lossage here if there is an open
746 ;; log buffer with a nonzero local value of vc-comment-ring-index.
747 (setq vc-comment-ring (make-ring vc-maximum-comment-ring-size)))
749 (defmacro with-vc-properties (file form settings)
750 "Execute FORM, then maybe set per-file properties for FILE.
751 SETTINGS is an association list of property/value pairs. After
752 executing FORM, set those properties from SETTINGS that have not yet
753 been updated to their corresponding values."
754 `(let ((vc-touched-properties (list t)))
755 ,form
756 (mapcar (lambda (setting)
757 (let ((property (car setting)))
758 (unless (memq property vc-touched-properties)
759 (put (intern ,file vc-file-prop-obarray)
760 property (cdr setting)))))
761 ,settings)))
763 ;; Random helper functions
765 (defsubst vc-editable-p (file)
766 "Return non-nil if FILE can be edited."
767 (or (eq (vc-checkout-model file) 'implicit)
768 (memq (vc-state file) '(edited needs-merge))))
770 ;; Two macros for elisp programming
771 ;;;###autoload
772 (defmacro with-vc-file (file comment &rest body)
773 "Check out a writable copy of FILE if necessary, then execute BODY.
774 Check in FILE with COMMENT (a string) after BODY has been executed.
775 FILE is passed through `expand-file-name'; BODY executed within
776 `save-excursion'. If FILE is not under version control, or locked by
777 somebody else, signal error."
778 (let ((filevar (make-symbol "file")))
779 `(let ((,filevar (expand-file-name ,file)))
780 (or (vc-backend ,filevar)
781 (error (format "File not under version control: `%s'" file)))
782 (unless (vc-editable-p ,filevar)
783 (let ((state (vc-state ,filevar)))
784 (if (stringp state)
785 (error (format "`%s' is locking `%s'" state ,filevar))
786 (vc-checkout ,filevar t))))
787 (save-excursion
788 ,@body)
789 (vc-checkin ,filevar nil ,comment))))
791 (put 'with-vc-file 'lisp-indent-function 2)
793 ;;;###autoload
794 (defmacro edit-vc-file (file comment &rest body)
795 "Edit FILE under version control, executing body.
796 Checkin with COMMENT after executing BODY.
797 This macro uses `with-vc-file', passing args to it.
798 However, before executing BODY, find FILE, and after BODY, save buffer."
799 (let ((filevar (make-symbol "file")))
800 `(let ((,filevar (expand-file-name ,file)))
801 (with-vc-file
802 ,filevar ,comment
803 (set-buffer (find-file-noselect ,filevar))
804 ,@body
805 (save-buffer)))))
807 (put 'edit-vc-file 'lisp-indent-function 2)
809 (defun vc-ensure-vc-buffer ()
810 "Make sure that the current buffer visits a version-controlled file."
811 (if vc-dired-mode
812 (set-buffer (find-file-noselect (dired-get-filename)))
813 (while vc-parent-buffer
814 (pop-to-buffer vc-parent-buffer))
815 (if (not (buffer-file-name))
816 (error "Buffer %s is not associated with a file" (buffer-name))
817 (if (not (vc-backend (buffer-file-name)))
818 (error "File %s is not under version control" (buffer-file-name))))))
820 (defun vc-process-filter (p s)
821 "An alternative output filter for async process P.
822 The only difference with the default filter is to insert S after markers."
823 (with-current-buffer (process-buffer p)
824 (save-excursion
825 (let ((inhibit-read-only t))
826 (goto-char (process-mark p))
827 (insert s)
828 (set-marker (process-mark p) (point))))))
830 (defun vc-setup-buffer (&optional buf)
831 "Prepare BUF for executing a VC command and make it current.
832 BUF defaults to \"*vc*\", can be a string and will be created if necessary."
833 (unless buf (setq buf "*vc*"))
834 (let ((camefrom (current-buffer))
835 (olddir default-directory))
836 (set-buffer (get-buffer-create buf))
837 (kill-all-local-variables)
838 (set (make-local-variable 'vc-parent-buffer) camefrom)
839 (set (make-local-variable 'vc-parent-buffer-name)
840 (concat " from " (buffer-name camefrom)))
841 (setq default-directory olddir)
842 (let ((inhibit-read-only t))
843 (erase-buffer))))
845 (defun vc-exec-after (code)
846 "Eval CODE when the current buffer's process is done.
847 If the current buffer has no process, just evaluate CODE.
848 Else, add CODE to the process' sentinel."
849 (let ((proc (get-buffer-process (current-buffer))))
850 (cond
851 ;; If there's no background process, just execute the code.
852 ((null proc) (eval code))
853 ;; If the background process has exited, reap it and try again
854 ((eq (process-status proc) 'exit)
855 (delete-process proc)
856 (vc-exec-after code))
857 ;; If a process is running, add CODE to the sentinel
858 ((eq (process-status proc) 'run)
859 (let ((sentinel (process-sentinel proc)))
860 (set-process-sentinel proc
861 `(lambda (p s)
862 (with-current-buffer ',(current-buffer)
863 (goto-char (process-mark p))
864 ,@(append (cdr (cdr (cdr ;strip off `with-current-buffer buf
865 ; (goto-char...)'
866 (car (cdr (cdr ;strip off `lambda (p s)'
867 sentinel))))))
868 (list `(vc-exec-after ',code))))))))
869 (t (error "Unexpected process state"))))
870 nil)
872 (defvar vc-post-command-functions nil
873 "Hook run at the end of `vc-do-command'.
874 Each function is called inside the buffer in which the command was run
875 and is passed 3 arguments: the COMMAND, the FILE and the FLAGS.")
877 ;;;###autoload
878 (defun vc-do-command (buffer okstatus command file &rest flags)
879 "Execute a VC command, notifying user and checking for errors.
880 Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the
881 current buffer if BUFFER is t. If the destination buffer is not
882 already current, set it up properly and erase it. The command is
883 considered successful if its exit status does not exceed OKSTATUS (if
884 OKSTATUS is nil, that means to ignore errors, if it is 'async, that
885 means not to wait for termination of the subprocess). FILE is the
886 name of the working file (may also be nil, to execute commands that
887 don't expect a file name). If an optional list of FLAGS is present,
888 that is inserted into the command line before the filename."
889 (and file (setq file (expand-file-name file)))
890 (if vc-command-messages
891 (message "Running %s on %s..." command file))
892 (save-current-buffer
893 (unless (or (eq buffer t)
894 (and (stringp buffer)
895 (string= (buffer-name) buffer))
896 (eq buffer (current-buffer)))
897 (vc-setup-buffer buffer))
898 (let ((squeezed nil)
899 (inhibit-read-only t)
900 (status 0))
901 (setq squeezed (delq nil (copy-sequence flags)))
902 (when file
903 ;; FIXME: file-relative-name can return a bogus result because
904 ;; it doesn't look at the actual file-system to see if symlinks
905 ;; come into play.
906 (setq squeezed (append squeezed (list (file-relative-name file)))))
907 (let ((exec-path (append vc-path exec-path))
908 ;; Add vc-path to PATH for the execution of this command.
909 (process-environment
910 (cons (concat "PATH=" (getenv "PATH")
911 path-separator
912 (mapconcat 'identity vc-path path-separator))
913 process-environment))
914 (w32-quote-process-args t))
915 (if (eq okstatus 'async)
916 (let ((proc (apply 'start-process command (current-buffer) command
917 squeezed)))
918 (unless (active-minibuffer-window)
919 (message "Running %s in the background..." command))
920 ;;(set-process-sentinel proc (lambda (p msg) (delete-process p)))
921 (set-process-filter proc 'vc-process-filter)
922 (vc-exec-after
923 `(unless (active-minibuffer-window)
924 (message "Running %s in the background... done" ',command))))
925 (setq status (apply 'call-process command nil t nil squeezed))
926 (when (or (not (integerp status)) (and okstatus (< okstatus status)))
927 (pop-to-buffer (current-buffer))
928 (goto-char (point-min))
929 (shrink-window-if-larger-than-buffer)
930 (error "Running %s...FAILED (%s)" command
931 (if (integerp status) (format "status %d" status) status))))
932 (if vc-command-messages
933 (message "Running %s...OK" command)))
934 (vc-exec-after
935 `(run-hook-with-args 'vc-post-command-functions ',command ',file ',flags))
936 status)))
938 (defun vc-position-context (posn)
939 "Save a bit of the text around POSN in the current buffer.
940 Used to help us find the corresponding position again later
941 if markers are destroyed or corrupted."
942 ;; A lot of this was shamelessly lifted from Sebastian Kremer's
943 ;; rcs.el mode.
944 (list posn
945 (buffer-size)
946 (buffer-substring posn
947 (min (point-max) (+ posn 100)))))
949 (defun vc-find-position-by-context (context)
950 "Return the position of CONTEXT in the current buffer.
951 If CONTEXT cannot be found, return nil."
952 (let ((context-string (nth 2 context)))
953 (if (equal "" context-string)
954 (point-max)
955 (save-excursion
956 (let ((diff (- (nth 1 context) (buffer-size))))
957 (if (< diff 0) (setq diff (- diff)))
958 (goto-char (nth 0 context))
959 (if (or (search-forward context-string nil t)
960 ;; Can't use search-backward since the match may continue
961 ;; after point.
962 (progn (goto-char (- (point) diff (length context-string)))
963 ;; goto-char doesn't signal an error at
964 ;; beginning of buffer like backward-char would
965 (search-forward context-string nil t)))
966 ;; to beginning of OSTRING
967 (- (point) (length context-string))))))))
969 (defun vc-context-matches-p (posn context)
970 "Return t if POSN matches CONTEXT, nil otherwise."
971 (let* ((context-string (nth 2 context))
972 (len (length context-string))
973 (end (+ posn len)))
974 (if (> end (1+ (buffer-size)))
976 (string= context-string (buffer-substring posn end)))))
978 (defun vc-buffer-context ()
979 "Return a list (POINT-CONTEXT MARK-CONTEXT REPARSE).
980 Used by `vc-restore-buffer-context' to later restore the context."
981 (let ((point-context (vc-position-context (point)))
982 ;; Use mark-marker to avoid confusion in transient-mark-mode.
983 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer))
984 (vc-position-context (mark-marker))))
985 ;; Make the right thing happen in transient-mark-mode.
986 (mark-active nil)
987 ;; We may want to reparse the compilation buffer after revert
988 (reparse (and (boundp 'compilation-error-list) ;compile loaded
989 (let ((curbuf (current-buffer)))
990 ;; Construct a list; each elt is nil or a buffer
991 ;; iff that buffer is a compilation output buffer
992 ;; that contains markers into the current buffer.
993 (save-excursion
994 (mapcar (lambda (buffer)
995 (set-buffer buffer)
996 (let ((errors (or
997 compilation-old-error-list
998 compilation-error-list))
999 (buffer-error-marked-p nil))
1000 (while (and (consp errors)
1001 (not buffer-error-marked-p))
1002 (and (markerp (cdr (car errors)))
1003 (eq buffer
1004 (marker-buffer
1005 (cdr (car errors))))
1006 (setq buffer-error-marked-p t))
1007 (setq errors (cdr errors)))
1008 (if buffer-error-marked-p buffer)))
1009 (buffer-list)))))))
1010 (list point-context mark-context reparse)))
1012 (defun vc-restore-buffer-context (context)
1013 "Restore point/mark, and reparse any affected compilation buffers.
1014 CONTEXT is that which `vc-buffer-context' returns."
1015 (let ((point-context (nth 0 context))
1016 (mark-context (nth 1 context))
1017 (reparse (nth 2 context)))
1018 ;; Reparse affected compilation buffers.
1019 (while reparse
1020 (if (car reparse)
1021 (with-current-buffer (car reparse)
1022 (let ((compilation-last-buffer (current-buffer)) ;select buffer
1023 ;; Record the position in the compilation buffer of
1024 ;; the last error next-error went to.
1025 (error-pos (marker-position
1026 (car (car-safe compilation-error-list)))))
1027 ;; Reparse the error messages as far as they were parsed before.
1028 (compile-reinitialize-errors '(4) compilation-parsing-end)
1029 ;; Move the pointer up to find the error we were at before
1030 ;; reparsing. Now next-error should properly go to the next one.
1031 (while (and compilation-error-list
1032 (/= error-pos (car (car compilation-error-list))))
1033 (setq compilation-error-list (cdr compilation-error-list))))))
1034 (setq reparse (cdr reparse)))
1036 ;; if necessary, restore point and mark
1037 (if (not (vc-context-matches-p (point) point-context))
1038 (let ((new-point (vc-find-position-by-context point-context)))
1039 (if new-point (goto-char new-point))))
1040 (and mark-active
1041 mark-context
1042 (not (vc-context-matches-p (mark) mark-context))
1043 (let ((new-mark (vc-find-position-by-context mark-context)))
1044 (if new-mark (set-mark new-mark))))))
1046 (defun vc-revert-buffer1 (&optional arg no-confirm)
1047 "Revert buffer, keeping point and mark where user expects them.
1048 Try to be clever in the face of changes due to expanded version control
1049 key words. This is important for typeahead to work as expected.
1050 ARG and NO-CONFIRM are passed on to `revert-buffer'."
1051 (interactive "P")
1052 (widen)
1053 (let ((context (vc-buffer-context)))
1054 ;; Use save-excursion here, because it may be able to restore point
1055 ;; and mark properly even in cases where vc-restore-buffer-context
1056 ;; would fail. However, save-excursion might also get it wrong --
1057 ;; in this case, vc-restore-buffer-context gives it a second try.
1058 (save-excursion
1059 ;; t means don't call normal-mode;
1060 ;; that's to preserve various minor modes.
1061 (revert-buffer arg no-confirm t))
1062 (vc-restore-buffer-context context)))
1065 (defun vc-buffer-sync (&optional not-urgent)
1066 "Make sure the current buffer and its working file are in sync.
1067 NOT-URGENT means it is ok to continue if the user says not to save."
1068 (if (buffer-modified-p)
1069 (if (or vc-suppress-confirm
1070 (y-or-n-p (format "Buffer %s modified; save it? " (buffer-name))))
1071 (save-buffer)
1072 (unless not-urgent
1073 (error "Aborted")))))
1075 (defun vc-default-latest-on-branch-p (backend file)
1076 "Return non-nil if FILE is the latest on its branch.
1077 This default implementation always returns non-nil, which means that
1078 editing non-current versions is not supported by default."
1081 (defun vc-recompute-state (file)
1082 "Force a recomputation of the version control state of FILE.
1083 The state is computed using the exact, and possibly expensive
1084 function `vc-BACKEND-state', not the heuristic."
1085 (vc-file-setprop file 'vc-state (vc-call state file)))
1087 (defun vc-next-action-on-file (file verbose &optional comment)
1088 "Do The Right Thing for a given FILE under version control.
1089 If COMMENT is specified, it will be used as an admin or checkin comment.
1090 If VERBOSE is non-nil, query the user rather than using default parameters."
1091 (let ((visited (get-file-buffer file))
1092 state version)
1093 (when visited
1094 (if vc-dired-mode
1095 (switch-to-buffer-other-window visited)
1096 (set-buffer visited))
1097 ;; Check relation of buffer and file, and make sure
1098 ;; user knows what he's doing. First, finding the file
1099 ;; will check whether the file on disk is newer.
1100 ;; Ignore buffer-read-only during this test, and
1101 ;; preserve find-file-literally.
1102 (let ((buffer-read-only (not (file-writable-p file))))
1103 (find-file-noselect file nil find-file-literally))
1104 (if (not (verify-visited-file-modtime (current-buffer)))
1105 (if (yes-or-no-p "Replace file on disk with buffer contents? ")
1106 (write-file (buffer-file-name))
1107 (error "Aborted"))
1108 ;; Now, check if we have unsaved changes.
1109 (vc-buffer-sync t)
1110 (if (buffer-modified-p)
1111 (or (y-or-n-p "Operate on disk file, keeping modified buffer? ")
1112 (error "Aborted")))))
1114 ;; Do the right thing
1115 (if (not (vc-registered file))
1116 (vc-register verbose comment)
1117 (vc-recompute-state file)
1118 (if visited (vc-mode-line file))
1119 (setq state (vc-state file))
1120 (cond
1121 ;; up-to-date
1122 ((or (eq state 'up-to-date)
1123 (and verbose (eq state 'needs-patch)))
1124 (cond
1125 (verbose
1126 ;; go to a different version
1127 (setq version
1128 (read-string "Branch, version, or backend to move to: "))
1129 (let ((vsym (intern-soft (upcase version))))
1130 (if (member vsym vc-handled-backends)
1131 (vc-transfer-file file vsym)
1132 (vc-checkout file (eq (vc-checkout-model file) 'implicit)
1133 version))))
1134 ((not (eq (vc-checkout-model file) 'implicit))
1135 ;; check the file out
1136 (vc-checkout file t))
1138 ;; do nothing
1139 (message "%s is up-to-date" file))))
1141 ;; Abnormal: edited but read-only
1142 ((and visited (eq state 'edited)
1143 buffer-read-only (not (file-writable-p file)))
1144 ;; Make the file+buffer read-write. If the user really wanted to
1145 ;; commit, he'll get a chance to do that next time around, anyway.
1146 (message "File is edited but read-only; making it writable")
1147 (set-file-modes buffer-file-name
1148 (logior (file-modes buffer-file-name) 128))
1149 (toggle-read-only -1))
1151 ;; edited
1152 ((eq state 'edited)
1153 (cond
1154 ;; For files with locking, if the file does not contain
1155 ;; any changes, just let go of the lock, i.e. revert.
1156 ((and (not (eq (vc-checkout-model file) 'implicit))
1157 (vc-workfile-unchanged-p file)
1158 ;; If buffer is modified, that means the user just
1159 ;; said no to saving it; in that case, don't revert,
1160 ;; because the user might intend to save after
1161 ;; finishing the log entry.
1162 (not (and visited (buffer-modified-p))))
1163 ;; DO NOT revert the file without asking the user!
1164 (if (not visited) (find-file-other-window file))
1165 (if (yes-or-no-p "Revert to master version? ")
1166 (vc-revert-buffer)))
1167 (t ;; normal action
1168 (if (not verbose)
1169 (vc-checkin file nil comment)
1170 (setq version (read-string "New version or backend: "))
1171 (let ((vsym (intern (upcase version))))
1172 (if (member vsym vc-handled-backends)
1173 (vc-transfer-file file vsym)
1174 (vc-checkin file version comment)))))))
1176 ;; locked by somebody else
1177 ((stringp state)
1178 (if comment
1179 (error "Sorry, you can't steal the lock on %s this way"
1180 (file-name-nondirectory file)))
1181 (vc-steal-lock file
1182 (if verbose (read-string "Version to steal: ")
1183 (vc-workfile-version file))
1184 state))
1186 ;; needs-patch
1187 ((eq state 'needs-patch)
1188 (if (yes-or-no-p (format
1189 "%s is not up-to-date. Get latest version? "
1190 (file-name-nondirectory file)))
1191 (vc-checkout file (eq (vc-checkout-model file) 'implicit) t)
1192 (if (and (not (eq (vc-checkout-model file) 'implicit))
1193 (yes-or-no-p "Lock this version? "))
1194 (vc-checkout file t)
1195 (error "Aborted"))))
1197 ;; needs-merge
1198 ((eq state 'needs-merge)
1199 (if (yes-or-no-p (format
1200 "%s is not up-to-date. Merge in changes now? "
1201 (file-name-nondirectory file)))
1202 (vc-maybe-resolve-conflicts file (vc-call merge-news file))
1203 (error "Aborted")))
1205 ;; unlocked-changes
1206 ((eq state 'unlocked-changes)
1207 (if (not visited) (find-file-other-window file))
1208 (if (save-window-excursion
1209 (vc-version-diff file (vc-workfile-version file) nil)
1210 (goto-char (point-min))
1211 (let ((inhibit-read-only t))
1212 (insert
1213 (format "Changes to %s since last lock:\n\n" file)))
1214 (not (beep))
1215 (yes-or-no-p (concat "File has unlocked changes. "
1216 "Claim lock retaining changes? ")))
1217 (progn (vc-call steal-lock file)
1218 (clear-visited-file-modtime)
1219 ;; Must clear any headers here because they wouldn't
1220 ;; show that the file is locked now.
1221 (vc-clear-headers file)
1222 (write-file (buffer-file-name))
1223 (vc-mode-line file))
1224 (if (not (yes-or-no-p
1225 "Revert to checked-in version, instead? "))
1226 (error "Checkout aborted")
1227 (vc-revert-buffer1 t t)
1228 (vc-checkout file t))))))))
1230 (defvar vc-dired-window-configuration)
1232 (defun vc-next-action-dired (file rev comment)
1233 "Call `vc-next-action-on-file' on all the marked files.
1234 Ignores FILE and REV, but passes on COMMENT."
1235 (let ((dired-buffer (current-buffer))
1236 (dired-dir default-directory))
1237 (dired-map-over-marks
1238 (let ((file (dired-get-filename)))
1239 (message "Processing %s..." file)
1240 (vc-next-action-on-file file nil comment)
1241 (set-buffer dired-buffer)
1242 (set-window-configuration vc-dired-window-configuration)
1243 (message "Processing %s...done" file))
1244 nil t))
1245 (dired-move-to-filename))
1247 ;; Here's the major entry point.
1249 ;;;###autoload
1250 (defun vc-next-action (verbose)
1251 "Do the next logical version control operation on the current file.
1253 If you call this from within a VC dired buffer with no files marked,
1254 it will operate on the file in the current line.
1256 If you call this from within a VC dired buffer, and one or more
1257 files are marked, it will accept a log message and then operate on
1258 each one. The log message will be used as a comment for any register
1259 or checkin operations, but ignored when doing checkouts. Attempted
1260 lock steals will raise an error.
1262 A prefix argument lets you specify the version number to use.
1264 For RCS and SCCS files:
1265 If the file is not already registered, this registers it for version
1266 control.
1267 If the file is registered and not locked by anyone, this checks out
1268 a writable and locked file ready for editing.
1269 If the file is checked out and locked by the calling user, this
1270 first checks to see if the file has changed since checkout. If not,
1271 it performs a revert.
1272 If the file has been changed, this pops up a buffer for entry
1273 of a log message; when the message has been entered, it checks in the
1274 resulting changes along with the log message as change commentary. If
1275 the variable `vc-keep-workfiles' is non-nil (which is its default), a
1276 read-only copy of the changed file is left in place afterwards.
1277 If the file is registered and locked by someone else, you are given
1278 the option to steal the lock.
1280 For CVS files:
1281 If the file is not already registered, this registers it for version
1282 control. This does a \"cvs add\", but no \"cvs commit\".
1283 If the file is added but not committed, it is committed.
1284 If your working file is changed, but the repository file is
1285 unchanged, this pops up a buffer for entry of a log message; when the
1286 message has been entered, it checks in the resulting changes along
1287 with the logmessage as change commentary. A writable file is retained.
1288 If the repository file is changed, you are asked if you want to
1289 merge in the changes into your working copy."
1291 (interactive "P")
1292 (catch 'nogo
1293 (if vc-dired-mode
1294 (let ((files (dired-get-marked-files)))
1295 (set (make-local-variable 'vc-dired-window-configuration)
1296 (current-window-configuration))
1297 (if (string= ""
1298 (mapconcat
1299 (lambda (f)
1300 (if (not (vc-up-to-date-p f)) "@" ""))
1301 files ""))
1302 (vc-next-action-dired nil nil "dummy")
1303 (vc-start-entry nil nil nil nil
1304 "Enter a change comment for the marked files."
1305 'vc-next-action-dired))
1306 (throw 'nogo nil)))
1307 (while vc-parent-buffer
1308 (pop-to-buffer vc-parent-buffer))
1309 (if buffer-file-name
1310 (vc-next-action-on-file buffer-file-name verbose)
1311 (error "Buffer %s is not associated with a file" (buffer-name)))))
1313 ;; These functions help the vc-next-action entry point
1315 ;;;###autoload
1316 (defun vc-register (&optional set-version comment)
1317 "Register the current file into a version control system.
1318 With prefix argument SET-VERSION, allow user to specify initial version
1319 level. If COMMENT is present, use that as an initial comment.
1321 The version control system to use is found by cycling through the list
1322 `vc-handled-backends'. The first backend in that list which declares
1323 itself responsible for the file (usually because other files in that
1324 directory are already registered under that backend) will be used to
1325 register the file. If no backend declares itself responsible, the
1326 first backend that could register the file is used."
1327 (interactive "P")
1328 (unless buffer-file-name (error "No visited file"))
1329 (when (vc-backend buffer-file-name)
1330 (if (vc-registered buffer-file-name)
1331 (error "This file is already registered")
1332 (unless (y-or-n-p "Previous master file has vanished. Make a new one? ")
1333 (error "Aborted"))))
1334 ;; Watch out for new buffers of size 0: the corresponding file
1335 ;; does not exist yet, even though buffer-modified-p is nil.
1336 (if (and (not (buffer-modified-p))
1337 (zerop (buffer-size))
1338 (not (file-exists-p buffer-file-name)))
1339 (set-buffer-modified-p t))
1340 (vc-buffer-sync)
1342 (vc-start-entry buffer-file-name
1343 (if set-version
1344 (read-string (format "Initial version level for %s: "
1345 (buffer-name)))
1346 (let ((backend (vc-responsible-backend buffer-file-name)))
1347 (if (vc-find-backend-function backend 'init-version)
1348 (vc-call-backend backend 'init-version)
1349 vc-default-init-version)))
1350 (or comment (not vc-initial-comment))
1352 "Enter initial comment."
1353 (lambda (file rev comment)
1354 (message "Registering %s... " file)
1355 (let ((backend (vc-responsible-backend file t)))
1356 (vc-file-clearprops file)
1357 (vc-call-backend backend 'register file rev comment)
1358 (vc-file-setprop file 'vc-backend backend)
1359 (unless vc-make-backup-files
1360 (make-local-variable 'backup-inhibited)
1361 (setq backup-inhibited t)))
1362 (message "Registering %s... done" file))))
1365 (defun vc-responsible-backend (file &optional register)
1366 "Return the name of a backend system that is responsible for FILE.
1367 The optional argument REGISTER means that a backend suitable for
1368 registration should be found.
1370 If REGISTER is nil, then if FILE is already registered, return the
1371 backend of FILE. If FILE is not registered, or a directory, then the
1372 first backend in `vc-handled-backends' that declares itself
1373 responsible for FILE is returned. If no backend declares itself
1374 responsible, return the first backend.
1376 If REGISTER is non-nil, return the first responsible backend under
1377 which FILE is not yet registered. If there is no such backend, return
1378 the first backend under which FILE is not yet registered, but could
1379 be registered."
1380 (if (not vc-handled-backends)
1381 (error "No handled backends"))
1382 (or (and (not (file-directory-p file)) (not register) (vc-backend file))
1383 (catch 'found
1384 ;; First try: find a responsible backend. If this is for registration,
1385 ;; it must be a backend under which FILE is not yet registered.
1386 (dolist (backend vc-handled-backends)
1387 (and (or (not register)
1388 (not (vc-call-backend backend 'registered file)))
1389 (vc-call-backend backend 'responsible-p file)
1390 (throw 'found backend)))
1391 ;; no responsible backend
1392 (if (not register)
1393 ;; if this is not for registration, the first backend must do
1394 (car vc-handled-backends)
1395 ;; for registration, we need to find a new backend that
1396 ;; could register FILE
1397 (dolist (backend vc-handled-backends)
1398 (and (not (vc-call-backend backend 'registered file))
1399 (vc-call-backend backend 'could-register file)
1400 (throw 'found backend)))
1401 (error "No backend that could register")))))
1403 (defun vc-default-responsible-p (backend file)
1404 "Indicate whether BACKEND is reponsible for FILE.
1405 The default is to return nil always."
1406 nil)
1408 (defun vc-default-could-register (backend file)
1409 "Return non-nil if BACKEND could be used to register FILE.
1410 The default implementation returns t for all files."
1413 (defun vc-resynch-window (file &optional keep noquery)
1414 "If FILE is in the current buffer, either revert or unvisit it.
1415 The choice between revert (to see expanded keywords) and unvisit depends on
1416 `vc-keep-workfiles'. NOQUERY if non-nil inhibits confirmation for
1417 reverting. NOQUERY should be t *only* if it is known the only
1418 difference between the buffer and the file is due to version control
1419 rather than user editing!"
1420 (and (string= buffer-file-name file)
1421 (if keep
1422 (progn
1423 (vc-revert-buffer1 t noquery)
1424 ;; TODO: Adjusting view mode might no longer be necessary
1425 ;; after RMS change to files.el of 1999-08-08. Investigate
1426 ;; this when we install the new VC.
1427 (and view-read-only
1428 (if (file-writable-p file)
1429 (and view-mode
1430 (let ((view-old-buffer-read-only nil))
1431 (view-mode-exit)))
1432 (and (not view-mode)
1433 (not (eq (get major-mode 'mode-class) 'special))
1434 (view-mode-enter))))
1435 (vc-mode-line buffer-file-name))
1436 (kill-buffer (current-buffer)))))
1438 (defun vc-resynch-buffer (file &optional keep noquery)
1439 "If FILE is currently visited, resynch its buffer."
1440 (if (string= buffer-file-name file)
1441 (vc-resynch-window file keep noquery)
1442 (let ((buffer (get-file-buffer file)))
1443 (if buffer
1444 (with-current-buffer buffer
1445 (vc-resynch-window file keep noquery)))))
1446 (vc-dired-resynch-file file))
1448 (defun vc-start-entry (file rev comment initial-contents msg action &optional after-hook)
1449 "Accept a comment for an operation on FILE revision REV.
1450 If COMMENT is nil, pop up a VC-log buffer, emit MSG, and set the
1451 action on close to ACTION. If COMMENT is a string and
1452 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial
1453 contents of the log entry buffer. If COMMENT is a string and
1454 INITIAL-CONTENTS is nil, do action immediately as if the user had
1455 entered COMMENT. If COMMENT is t, also do action immediately with an
1456 empty comment. Remember the file's buffer in `vc-parent-buffer'
1457 \(current one if no file). AFTER-HOOK specifies the local value
1458 for vc-log-operation-hook."
1459 (let ((parent (or (and file (get-file-buffer file)) (current-buffer))))
1460 (if vc-before-checkin-hook
1461 (if file
1462 (with-current-buffer parent
1463 (run-hooks 'vc-before-checkin-hook))
1464 (run-hooks 'vc-before-checkin-hook)))
1465 (if (and comment (not initial-contents))
1466 (set-buffer (get-buffer-create "*VC-log*"))
1467 (pop-to-buffer (get-buffer-create "*VC-log*")))
1468 (set (make-local-variable 'vc-parent-buffer) parent)
1469 (set (make-local-variable 'vc-parent-buffer-name)
1470 (concat " from " (buffer-name vc-parent-buffer)))
1471 (if file (vc-mode-line file))
1472 (vc-log-edit file)
1473 (make-local-variable 'vc-log-after-operation-hook)
1474 (if after-hook
1475 (setq vc-log-after-operation-hook after-hook))
1476 (setq vc-log-operation action)
1477 (setq vc-log-version rev)
1478 (when comment
1479 (erase-buffer)
1480 (when (stringp comment) (insert comment)))
1481 (if (or (not comment) initial-contents)
1482 (message "%s Type C-c C-c when done" msg)
1483 (vc-finish-logentry (eq comment t)))))
1485 (defun vc-checkout (file &optional writable rev)
1486 "Retrieve a copy of the revision REV of FILE.
1487 If WRITABLE is non-nil, make sure the retrieved file is writable.
1488 REV defaults to the latest revision.
1490 After check-out, runs the normal hook `vc-checkout-hook'."
1491 (and writable
1492 (not rev)
1493 (vc-call make-version-backups-p file)
1494 (vc-up-to-date-p file)
1495 (vc-make-version-backup file))
1496 (with-vc-properties
1497 file
1498 (condition-case err
1499 (vc-call checkout file writable rev)
1500 (file-error
1501 ;; Maybe the backend is not installed ;-(
1502 (when writable
1503 (let ((buf (get-file-buffer file)))
1504 (when buf (with-current-buffer buf (toggle-read-only -1)))))
1505 (signal (car err) (cdr err))))
1506 `((vc-state . ,(if (or (eq (vc-checkout-model file) 'implicit)
1507 (not writable))
1508 (if (vc-call latest-on-branch-p file)
1509 'up-to-date
1510 'needs-patch)
1511 'edited))
1512 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
1513 (vc-resynch-buffer file t t)
1514 (run-hooks 'vc-checkout-hook))
1516 (defun vc-steal-lock (file rev owner)
1517 "Steal the lock on FILE."
1518 (let (file-description)
1519 (if rev
1520 (setq file-description (format "%s:%s" file rev))
1521 (setq file-description file))
1522 (if (not (yes-or-no-p (format "Steal the lock on %s from %s? "
1523 file-description owner)))
1524 (error "Steal canceled"))
1525 (message "Stealing lock on %s..." file)
1526 (with-vc-properties
1527 file
1528 (vc-call steal-lock file rev)
1529 `((vc-state . edited)))
1530 (vc-resynch-buffer file t t)
1531 (message "Stealing lock on %s...done" file)
1532 ;; Write mail after actually stealing, because if the stealing
1533 ;; goes wrong, we don't want to send any mail.
1534 (compose-mail owner (format "Stolen lock on %s" file-description))
1535 (setq default-directory (expand-file-name "~/"))
1536 (goto-char (point-max))
1537 (insert
1538 (format "I stole the lock on %s, " file-description)
1539 (current-time-string)
1540 ".\n")
1541 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
1543 (defun vc-checkin (file &optional rev comment initial-contents)
1544 "Check in FILE.
1545 The optional argument REV may be a string specifying the new version
1546 level (if nil increment the current level). COMMENT is a comment
1547 string; if omitted, a buffer is popped up to accept a comment. If
1548 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial contents
1549 of the log entry buffer.
1551 If `vc-keep-workfiles' is nil, FILE is deleted afterwards, provided
1552 that the version control system supports this mode of operation.
1554 Runs the normal hook `vc-checkin-hook'."
1555 (vc-start-entry
1556 file rev comment initial-contents
1557 "Enter a change comment."
1558 (lambda (file rev comment)
1559 (message "Checking in %s..." file)
1560 ;; "This log message intentionally left almost blank".
1561 ;; RCS 5.7 gripes about white-space-only comments too.
1562 (or (and comment (string-match "[^\t\n ]" comment))
1563 (setq comment "*** empty log message ***"))
1564 (with-vc-properties
1565 file
1566 ;; Change buffers to get local value of vc-checkin-switches.
1567 (with-current-buffer (or (get-file-buffer file) (current-buffer))
1568 (progn
1569 (vc-call checkin file rev comment)
1570 (vc-delete-automatic-version-backups file)))
1571 `((vc-state . up-to-date)
1572 (vc-checkout-time . ,(nth 5 (file-attributes file)))
1573 (vc-workfile-version . nil)))
1574 (message "Checking in %s...done" file))
1575 'vc-checkin-hook))
1577 (defun vc-comment-to-change-log (&optional whoami file-name)
1578 "Enter last VC comment into the change log for the current file.
1579 WHOAMI (interactive prefix) non-nil means prompt for user name
1580 and site. FILE-NAME is the name of the change log; if nil, use
1581 `change-log-default-name'.
1583 This may be useful as a `vc-checkin-hook' to update change logs
1584 automatically."
1585 (interactive (if current-prefix-arg
1586 (list current-prefix-arg
1587 (prompt-for-change-log-name))))
1588 ;; Make sure the defvar for add-log-current-defun-function has been executed
1589 ;; before binding it.
1590 (require 'add-log)
1591 (let (;; Extract the comment first so we get any error before doing anything.
1592 (comment (ring-ref vc-comment-ring 0))
1593 ;; Don't let add-change-log-entry insert a defun name.
1594 (add-log-current-defun-function 'ignore)
1595 end)
1596 ;; Call add-log to do half the work.
1597 (add-change-log-entry whoami file-name t t)
1598 ;; Insert the VC comment, leaving point before it.
1599 (setq end (save-excursion (insert comment) (point-marker)))
1600 (if (looking-at "\\s *\\s(")
1601 ;; It starts with an open-paren, as in "(foo): Frobbed."
1602 ;; So remove the ": " add-log inserted.
1603 (delete-char -2))
1604 ;; Canonicalize the white space between the file name and comment.
1605 (just-one-space)
1606 ;; Indent rest of the text the same way add-log indented the first line.
1607 (let ((indentation (current-indentation)))
1608 (save-excursion
1609 (while (< (point) end)
1610 (forward-line 1)
1611 (indent-to indentation))
1612 (setq end (point))))
1613 ;; Fill the inserted text, preserving open-parens at bol.
1614 (let ((paragraph-separate (concat paragraph-separate "\\|\\s *\\s("))
1615 (paragraph-start (concat paragraph-start "\\|\\s *\\s(")))
1616 (beginning-of-line)
1617 (fill-region (point) end))
1618 ;; Canonicalize the white space at the end of the entry so it is
1619 ;; separated from the next entry by a single blank line.
1620 (skip-syntax-forward " " end)
1621 (delete-char (- (skip-syntax-backward " ")))
1622 (or (eobp) (looking-at "\n\n")
1623 (insert "\n"))))
1625 (defun vc-finish-logentry (&optional nocomment)
1626 "Complete the operation implied by the current log entry.
1627 Use the contents of the current buffer as a check-in or registration
1628 comment. If the optional arg NOCOMMENT is non-nil, then don't check
1629 the buffer contents as a comment, and don't add it to
1630 `vc-comment-ring'."
1631 (interactive)
1632 ;; Check and record the comment, if any.
1633 (unless nocomment
1634 ;; Comment too long?
1635 (vc-call-backend (or (and vc-log-file (vc-backend vc-log-file))
1636 (vc-responsible-backend default-directory))
1637 'logentry-check)
1638 (run-hooks 'vc-logentry-check-hook)
1639 ;; Record the comment in the comment ring
1640 (let ((comment (buffer-string)))
1641 (unless (and (ring-p vc-comment-ring)
1642 (not (ring-empty-p vc-comment-ring))
1643 (equal comment (ring-ref vc-comment-ring 0)))
1644 (ring-insert vc-comment-ring comment))))
1645 ;; Sync parent buffer in case the user modified it while editing the comment.
1646 ;; But not if it is a vc-dired buffer.
1647 (with-current-buffer vc-parent-buffer
1648 (or vc-dired-mode (vc-buffer-sync)))
1649 (if (not vc-log-operation) (error "No log operation is pending"))
1650 ;; save the parameters held in buffer-local variables
1651 (let ((log-operation vc-log-operation)
1652 (log-file vc-log-file)
1653 (log-version vc-log-version)
1654 (log-entry (buffer-string))
1655 (after-hook vc-log-after-operation-hook)
1656 (tmp-vc-parent-buffer vc-parent-buffer))
1657 (pop-to-buffer vc-parent-buffer)
1658 ;; OK, do it to it
1659 (save-excursion
1660 (funcall log-operation
1661 log-file
1662 log-version
1663 log-entry))
1664 ;; Remove checkin window (after the checkin so that if that fails
1665 ;; we don't zap the *VC-log* buffer and the typing therein).
1666 (let ((logbuf (get-buffer "*VC-log*")))
1667 (cond ((and logbuf vc-delete-logbuf-window)
1668 (delete-windows-on logbuf (selected-frame))
1669 ;; Kill buffer and delete any other dedicated windows/frames.
1670 (kill-buffer logbuf))
1671 (logbuf (pop-to-buffer "*VC-log*")
1672 (bury-buffer)
1673 (pop-to-buffer tmp-vc-parent-buffer))))
1674 ;; Now make sure we see the expanded headers
1675 (if log-file
1676 (vc-resynch-buffer log-file vc-keep-workfiles t))
1677 (if vc-dired-mode
1678 (dired-move-to-filename))
1679 (run-hooks after-hook 'vc-finish-logentry-hook)))
1681 ;; Code for access to the comment ring
1683 (defun vc-new-comment-index (stride len)
1684 "Return the comment index STRIDE elements from the current one.
1685 LEN is the length of `vc-comment-ring'."
1686 (mod (cond
1687 (vc-comment-ring-index (+ vc-comment-ring-index stride))
1688 ;; Initialize the index on the first use of this command
1689 ;; so that the first M-p gets index 0, and the first M-n gets
1690 ;; index -1.
1691 ((> stride 0) (1- stride))
1692 (t stride))
1693 len))
1695 (defun vc-previous-comment (arg)
1696 "Cycle backwards through comment history.
1697 With a numeric prefix ARG, go back ARG comments."
1698 (interactive "*p")
1699 (let ((len (ring-length vc-comment-ring)))
1700 (if (<= len 0)
1701 (progn (message "Empty comment ring") (ding))
1702 (erase-buffer)
1703 (setq vc-comment-ring-index (vc-new-comment-index arg len))
1704 (message "Comment %d" (1+ vc-comment-ring-index))
1705 (insert (ring-ref vc-comment-ring vc-comment-ring-index)))))
1707 (defun vc-next-comment (arg)
1708 "Cycle forwards through comment history.
1709 With a numeric prefix ARG, go forward ARG comments."
1710 (interactive "*p")
1711 (vc-previous-comment (- arg)))
1713 (defun vc-comment-search-reverse (str &optional stride)
1714 "Search backwards through comment history for substring match of STR.
1715 If the optional argument STRIDE is present, that is a step-width to use
1716 when going through the comment ring."
1717 ;; Why substring rather than regexp ? -sm
1718 (interactive
1719 (list (read-string "Comment substring: " nil nil vc-last-comment-match)))
1720 (unless stride (setq stride 1))
1721 (if (string= str "")
1722 (setq str vc-last-comment-match)
1723 (setq vc-last-comment-match str))
1724 (let* ((str (regexp-quote str))
1725 (len (ring-length vc-comment-ring))
1726 (n (vc-new-comment-index stride len)))
1727 (while (progn (when (or (>= n len) (< n 0)) (error "Not found"))
1728 (not (string-match str (ring-ref vc-comment-ring n))))
1729 (setq n (+ n stride)))
1730 (setq vc-comment-ring-index n)
1731 (vc-previous-comment 0)))
1733 (defun vc-comment-search-forward (str)
1734 "Search forwards through comment history for a substring match of STR."
1735 (interactive
1736 (list (read-string "Comment substring: " nil nil vc-last-comment-match)))
1737 (vc-comment-search-reverse str -1))
1739 ;; Additional entry points for examining version histories
1741 ;;;###autoload
1742 (defun vc-diff (historic &optional not-urgent)
1743 "Display diffs between file versions.
1744 Normally this compares the current file and buffer with the most
1745 recent checked in version of that file. This uses no arguments. With
1746 a prefix argument HISTORIC, it reads the file name to use and two
1747 version designators specifying which versions to compare. The
1748 optional argument NOT-URGENT non-nil means it is ok to say no to
1749 saving the buffer."
1750 (interactive (list current-prefix-arg t))
1751 (if historic
1752 (call-interactively 'vc-version-diff)
1753 (vc-ensure-vc-buffer)
1754 (let ((file buffer-file-name))
1755 (vc-buffer-sync not-urgent)
1756 (if (vc-workfile-unchanged-p buffer-file-name)
1757 (message "No changes to %s since latest version" file)
1758 (vc-version-diff file nil nil)))))
1760 (defun vc-version-diff (file rel1 rel2)
1761 "List the differences between FILE's versions REL1 and REL2.
1762 If REL1 is empty or nil it means to use the current workfile version;
1763 REL2 empty or nil means the current file contents. FILE may also be
1764 a directory, in that case, generate diffs between the correponding
1765 versions of all registered files in or below it."
1766 (interactive
1767 (let ((file (expand-file-name
1768 (read-file-name (if buffer-file-name
1769 "File or dir to diff: (default visited file) "
1770 "File or dir to diff: ")
1771 default-directory buffer-file-name t)))
1772 (rel1-default nil) (rel2-default nil))
1773 ;; compute default versions based on the file state
1774 (cond
1775 ;; if it's a directory, don't supply any version default
1776 ((file-directory-p file)
1777 nil)
1778 ;; if the file is not up-to-date, use current version as older version
1779 ((not (vc-up-to-date-p file))
1780 (setq rel1-default (vc-workfile-version file)))
1781 ;; if the file is not locked, use last and previous version as default
1783 (setq rel1-default (vc-call previous-version file
1784 (vc-workfile-version file)))
1785 (if (string= rel1-default "") (setq rel1-default nil))
1786 (setq rel2-default (vc-workfile-version file))))
1787 ;; construct argument list
1788 (list file
1789 (read-string (if rel1-default
1790 (concat "Older version: (default "
1791 rel1-default ") ")
1792 "Older version: ")
1793 nil nil rel1-default)
1794 (read-string (if rel2-default
1795 (concat "Newer version: (default "
1796 rel2-default ") ")
1797 "Newer version (default: current source): ")
1798 nil nil rel2-default))))
1799 (if (file-directory-p file)
1800 ;; recursive directory diff
1801 (progn
1802 (vc-setup-buffer "*vc-diff*")
1803 (if (string-equal rel1 "") (setq rel1 nil))
1804 (if (string-equal rel2 "") (setq rel2 nil))
1805 (let ((inhibit-read-only t))
1806 (insert "Diffs between "
1807 (or rel1 "last version checked in")
1808 " and "
1809 (or rel2 "current workfile(s)")
1810 ":\n\n"))
1811 (let ((dir (file-name-as-directory file)))
1812 (vc-call-backend (vc-responsible-backend dir)
1813 'diff-tree dir rel1 rel2))
1814 (vc-exec-after `(let ((inhibit-read-only t))
1815 (insert "\nEnd of diffs.\n"))))
1816 ;; single file diff
1817 (vc-diff-internal file rel1 rel2))
1818 (set-buffer "*vc-diff*")
1819 (if (and (zerop (buffer-size))
1820 (not (get-buffer-process (current-buffer))))
1821 (progn
1822 (if rel1
1823 (if rel2
1824 (message "No changes to %s between %s and %s" file rel1 rel2)
1825 (message "No changes to %s since %s" file rel1))
1826 (message "No changes to %s since latest version" file))
1827 nil)
1828 (pop-to-buffer (current-buffer))
1829 ;; Gnus-5.8.5 sets up an autoload for diff-mode, even if it's
1830 ;; not available. Work around that.
1831 (if (require 'diff-mode nil t) (diff-mode))
1832 (vc-exec-after '(let ((inhibit-read-only t))
1833 (if (eq (buffer-size) 0)
1834 (insert "No differences found.\n"))
1835 (goto-char (point-min))
1836 (shrink-window-if-larger-than-buffer)))
1839 (defun vc-diff-internal (file rel1 rel2)
1840 "Run diff to compare FILE's revisions REL1 and REL2.
1841 Output goes to the current buffer, which is assumed properly set up.
1842 The exit status of the diff command is returned.
1844 This function takes care to set up a proper coding system for diff output.
1845 If both revisions are available as local files, then it also does not
1846 actually call the backend, but performs a local diff."
1847 (if (or (not rel1) (string-equal rel1 ""))
1848 (setq rel1 (vc-workfile-version file)))
1849 (if (string-equal rel2 "")
1850 (setq rel2 nil))
1851 (let ((file-rel1 (vc-version-backup-file file rel1))
1852 (file-rel2 (if (not rel2)
1853 file
1854 (vc-version-backup-file file rel2)))
1855 (coding-system-for-read (vc-coding-system-for-diff file)))
1856 (if (and file-rel1 file-rel2)
1857 (apply 'vc-do-command "*vc-diff*" 1 "diff" nil
1858 (append (if (listp diff-switches)
1859 diff-switches
1860 (list diff-switches))
1861 (if (listp vc-diff-switches)
1862 vc-diff-switches
1863 (list vc-diff-switches))
1864 (list (file-relative-name file-rel1)
1865 (file-relative-name file-rel2))))
1866 (vc-call diff file rel1 rel2))))
1868 (defmacro vc-diff-switches-list (backend)
1869 "Return the list of switches to use for executing diff under BACKEND."
1870 `(append
1871 (if (listp diff-switches) diff-switches (list diff-switches))
1872 (if (listp vc-diff-switches) vc-diff-switches (list vc-diff-switches))
1873 (let* ((backend-switches-symbol
1874 (intern (concat "vc-" (downcase (symbol-name ,backend))
1875 "-diff-switches")))
1876 (backend-switches
1877 (if (boundp backend-switches-symbol)
1878 (eval backend-switches-symbol)
1879 nil)))
1880 (if (listp backend-switches) backend-switches (list backend-switches)))))
1882 (defun vc-default-diff-tree (backend dir rel1 rel2)
1883 "List differences for all registered files at and below DIR.
1884 The meaning of REL1 and REL2 is the same as for `vc-version-diff'."
1885 ;; This implementation does an explicit tree walk, and calls
1886 ;; vc-BACKEND-diff directly for each file. An optimization
1887 ;; would be to use `vc-diff-internal', so that diffs can be local,
1888 ;; and to call it only for files that are actually changed.
1889 ;; However, this is expensive for some backends, and so it is left
1890 ;; to backend-specific implementations.
1891 (setq default-directory dir)
1892 (vc-file-tree-walk
1893 default-directory
1894 (lambda (f)
1895 (vc-exec-after
1896 `(let ((coding-system-for-read (vc-coding-system-for-diff ',f)))
1897 (message "Looking at %s" ',f)
1898 (vc-call-backend ',(vc-backend f)
1899 'diff ',f ',rel1 ',rel2))))))
1901 (defun vc-coding-system-for-diff (file)
1902 "Return the coding system for reading diff output for FILE."
1903 (or coding-system-for-read
1904 ;; if we already have this file open,
1905 ;; use the buffer's coding system
1906 (let ((buf (find-buffer-visiting file)))
1907 (if buf (with-current-buffer buf
1908 buffer-file-coding-system)))
1909 ;; otherwise, try to find one based on the file name
1910 (car (find-operation-coding-system 'insert-file-contents file))
1911 ;; and a final fallback
1912 'undecided))
1914 ;;;###autoload
1915 (defun vc-version-other-window (rev)
1916 "Visit version REV of the current file in another window.
1917 If the current file is named `F', the version is named `F.~REV~'.
1918 If `F.~REV~' already exists, use it instead of checking it out again."
1919 (interactive "sVersion to visit (default is workfile version): ")
1920 (vc-ensure-vc-buffer)
1921 (let* ((file buffer-file-name)
1922 (version (if (string-equal rev "")
1923 (vc-workfile-version file)
1924 rev)))
1925 (switch-to-buffer-other-window (vc-find-version file version))))
1927 (defun vc-find-version (file version)
1928 "Read VERSION of FILE into a buffer and return the buffer."
1929 (let ((automatic-backup (vc-version-backup-file-name file version))
1930 (filebuf (or (get-file-buffer file) (current-buffer)))
1931 (filename (vc-version-backup-file-name file version 'manual)))
1932 (unless (file-exists-p filename)
1933 (if (file-exists-p automatic-backup)
1934 (rename-file automatic-backup filename nil)
1935 (message "Checking out %s..." filename)
1936 (with-current-buffer filebuf
1937 (let ((failed t))
1938 (unwind-protect
1939 (let ((coding-system-for-read 'no-conversion)
1940 (coding-system-for-write 'no-conversion))
1941 (with-temp-file filename
1942 (let ((outbuf (current-buffer)))
1943 ;; Change buffer to get local value of
1944 ;; vc-checkout-switches.
1945 (with-current-buffer filebuf
1946 (vc-call find-version file version outbuf))))
1947 (setq failed nil))
1948 (if (and failed (file-exists-p filename))
1949 (delete-file filename))))
1950 (vc-mode-line file))
1951 (message "Checking out %s...done" filename)))
1952 (find-file-noselect filename)))
1954 (defun vc-default-find-version (backend file rev buffer)
1955 "Provide the new `find-version' op based on the old `checkout' op.
1956 This is only for compatibility with old backends. They should be updated
1957 to provide the `find-version' operation instead."
1958 (let ((tmpfile (make-temp-file (expand-file-name file))))
1959 (unwind-protect
1960 (progn
1961 (vc-call-backend backend 'checkout file nil rev tmpfile)
1962 (with-current-buffer buffer
1963 (insert-file-contents-literally tmpfile)))
1964 (delete-file tmpfile))))
1966 ;; Header-insertion code
1968 ;;;###autoload
1969 (defun vc-insert-headers ()
1970 "Insert headers into a file for use with a version control system.
1971 Headers desired are inserted at point, and are pulled from
1972 the variable `vc-BACKEND-header'."
1973 (interactive)
1974 (vc-ensure-vc-buffer)
1975 (save-excursion
1976 (save-restriction
1977 (widen)
1978 (if (or (not (vc-check-headers))
1979 (y-or-n-p "Version headers already exist. Insert another set? "))
1980 (progn
1981 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
1982 (comment-start-vc (or (car delims) comment-start "#"))
1983 (comment-end-vc (or (car (cdr delims)) comment-end ""))
1984 (hdsym (vc-make-backend-sym (vc-backend (buffer-file-name))
1985 'header))
1986 (hdstrings (and (boundp hdsym) (symbol-value hdsym))))
1987 (mapcar (lambda (s)
1988 (insert comment-start-vc "\t" s "\t"
1989 comment-end-vc "\n"))
1990 hdstrings)
1991 (if vc-static-header-alist
1992 (mapcar (lambda (f)
1993 (if (string-match (car f) buffer-file-name)
1994 (insert (format (cdr f) (car hdstrings)))))
1995 vc-static-header-alist))
1997 )))))
1999 (defun vc-clear-headers (&optional file)
2000 "Clear all version headers in the current buffer (or FILE).
2001 The headers are reset to their non-expanded form."
2002 (let* ((filename (or file buffer-file-name))
2003 (visited (find-buffer-visiting filename))
2004 (backend (vc-backend filename)))
2005 (when (vc-find-backend-function backend 'clear-headers)
2006 (if visited
2007 (let ((context (vc-buffer-context)))
2008 ;; save-excursion may be able to relocate point and mark
2009 ;; properly. If it fails, vc-restore-buffer-context
2010 ;; will give it a second try.
2011 (save-excursion
2012 (vc-call-backend backend 'clear-headers))
2013 (vc-restore-buffer-context context))
2014 (set-buffer (find-file-noselect filename))
2015 (vc-call-backend backend 'clear-headers)
2016 (kill-buffer filename)))))
2018 ;;;###autoload
2019 (defun vc-merge ()
2020 "Merge changes between two versions into the current buffer's file.
2021 This asks for two versions to merge from in the minibuffer. If the
2022 first version is a branch number, then merge all changes from that
2023 branch. If the first version is empty, merge news, i.e. recent changes
2024 from the current branch.
2026 See Info node `Merging'."
2027 (interactive)
2028 (vc-ensure-vc-buffer)
2029 (vc-buffer-sync)
2030 (let* ((file buffer-file-name)
2031 (backend (vc-backend file))
2032 (state (vc-state file))
2033 first-version second-version status)
2034 (cond
2035 ((stringp state)
2036 (error "File is locked by %s" state))
2037 ((not (vc-editable-p file))
2038 (if (y-or-n-p
2039 "File must be checked out for merging. Check out now? ")
2040 (vc-checkout file t)
2041 (error "Merge aborted"))))
2042 (setq first-version
2043 (read-string (concat "Branch or version to merge from "
2044 "(default: news on current branch): ")))
2045 (if (string= first-version "")
2046 (if (not (vc-find-backend-function backend 'merge-news))
2047 (error "Sorry, merging news is not implemented for %s" backend)
2048 (setq status (vc-call merge-news file)))
2049 (if (not (vc-find-backend-function backend 'merge))
2050 (error "Sorry, merging is not implemented for %s" backend)
2051 (if (not (vc-branch-p first-version))
2052 (setq second-version
2053 (read-string "Second version: "
2054 (concat (vc-branch-part first-version) ".")))
2055 ;; We want to merge an entire branch. Set versions
2056 ;; accordingly, so that vc-BACKEND-merge understands us.
2057 (setq second-version first-version)
2058 ;; first-version must be the starting point of the branch
2059 (setq first-version (vc-branch-part first-version)))
2060 (setq status (vc-call merge file first-version second-version))))
2061 (vc-maybe-resolve-conflicts file status "WORKFILE" "MERGE SOURCE")))
2063 (defun vc-maybe-resolve-conflicts (file status &optional name-A name-B)
2064 (vc-resynch-buffer file t (not (buffer-modified-p)))
2065 (if (zerop status) (message "Merge successful")
2066 (smerge-mode 1)
2067 (if (y-or-n-p "Conflicts detected. Resolve them now? ")
2068 (vc-resolve-conflicts name-A name-B)
2069 (message "File contains conflict markers"))))
2071 ;;;###autoload
2072 (defalias 'vc-resolve-conflicts 'smerge-ediff)
2074 ;; The VC directory major mode. Coopt Dired for this.
2075 ;; All VC commands get mapped into logical equivalents.
2077 (defvar vc-dired-switches)
2078 (defvar vc-dired-terse-mode)
2080 (defvar vc-dired-mode-map
2081 (let ((map (make-sparse-keymap))
2082 (vmap (make-sparse-keymap)))
2083 (define-key map "\C-xv" vmap)
2084 (define-key map "v" vmap)
2085 (set-keymap-parent vmap vc-prefix-map)
2086 (define-key vmap "t" 'vc-dired-toggle-terse-mode)
2087 map))
2089 (define-derived-mode vc-dired-mode dired-mode "Dired under VC"
2090 "The major mode used in VC directory buffers.
2092 It works like Dired, but lists only files under version control, with
2093 the current VC state of each file being indicated in the place of the
2094 file's link count, owner, group and size. Subdirectories are also
2095 listed, and you may insert them into the buffer as desired, like in
2096 Dired.
2098 All Dired commands operate normally, with the exception of `v', which
2099 is redefined as the version control prefix, so that you can type
2100 `vl', `v=' etc. to invoke `vc-print-log', `vc-diff', and the like on
2101 the file named in the current Dired buffer line. `vv' invokes
2102 `vc-next-action' on this file, or on all files currently marked.
2103 There is a special command, `*l', to mark all files currently locked."
2104 ;; define-derived-mode does it for us in Emacs-21, but not in Emacs-20.
2105 ;; We do it here because dired might not be loaded yet
2106 ;; when vc-dired-mode-map is initialized.
2107 (set-keymap-parent vc-dired-mode-map dired-mode-map)
2108 (add-hook 'dired-after-readin-hook 'vc-dired-hook nil t)
2109 ;; The following is slightly modified from dired.el,
2110 ;; because file lines look a bit different in vc-dired-mode
2111 ;; (the column before the date does not end in a digit).
2112 (set (make-local-variable 'dired-move-to-filename-regexp)
2113 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
2114 ;; In some locales, month abbreviations are as short as 2 letters,
2115 ;; and they can be followed by ".".
2116 (month (concat l l "+\\.?"))
2117 (s " ")
2118 (yyyy "[0-9][0-9][0-9][0-9]")
2119 (dd "[ 0-3][0-9]")
2120 (HH:MM "[ 0-2][0-9]:[0-5][0-9]")
2121 (seconds "[0-6][0-9]\\([.,][0-9]+\\)?")
2122 (zone "[-+][0-2][0-9][0-5][0-9]")
2123 (iso-mm-dd "[01][0-9]-[0-3][0-9]")
2124 (iso-time (concat HH:MM "\\(:" seconds "\\( ?" zone "\\)?\\)?"))
2125 (iso (concat "\\(\\(" yyyy "-\\)?" iso-mm-dd "[ T]" iso-time
2126 "\\|" yyyy "-" iso-mm-dd "\\)"))
2127 (western (concat "\\(" month s "+" dd "\\|" dd "\\.?" s month "\\)"
2128 s "+"
2129 "\\(" HH:MM "\\|" yyyy "\\)"))
2130 (western-comma (concat month s "+" dd "," s "+" yyyy))
2131 ;; Japanese MS-Windows ls-lisp has one-digit months, and
2132 ;; omits the Kanji characters after month and day-of-month.
2133 (mm "[ 0-1]?[0-9]")
2134 (japanese
2135 (concat mm l "?" s dd l "?" s "+"
2136 "\\(" HH:MM "\\|" yyyy l "?" "\\)")))
2137 ;; the .* below ensures that we find the last match on a line
2138 (concat ".*" s
2139 "\\(" western "\\|" western-comma "\\|" japanese "\\|" iso "\\)"
2140 s "+")))
2141 (and (boundp 'vc-dired-switches)
2142 vc-dired-switches
2143 (set (make-local-variable 'dired-actual-switches)
2144 vc-dired-switches))
2145 (set (make-local-variable 'vc-dired-terse-mode) vc-dired-terse-display)
2146 (setq vc-dired-mode t))
2148 (defun vc-dired-toggle-terse-mode ()
2149 "Toggle terse display in VC Dired."
2150 (interactive)
2151 (if (not vc-dired-mode)
2153 (setq vc-dired-terse-mode (not vc-dired-terse-mode))
2154 (if vc-dired-terse-mode
2155 (vc-dired-hook)
2156 (revert-buffer))))
2158 (defun vc-dired-mark-locked ()
2159 "Mark all files currently locked."
2160 (interactive)
2161 (dired-mark-if (let ((f (dired-get-filename nil t)))
2162 (and f
2163 (not (file-directory-p f))
2164 (not (vc-up-to-date-p f))))
2165 "locked file"))
2167 (define-key vc-dired-mode-map "*l" 'vc-dired-mark-locked)
2169 (defun vc-default-dired-state-info (backend file)
2170 (let ((state (vc-state file)))
2171 (cond
2172 ((stringp state) (concat "(" state ")"))
2173 ((eq state 'edited) (concat "(" (vc-user-login-name) ")"))
2174 ((eq state 'needs-merge) "(merge)")
2175 ((eq state 'needs-patch) "(patch)")
2176 ((eq state 'unlocked-changes) "(stale)"))))
2178 (defun vc-dired-reformat-line (vc-info)
2179 "Reformat a directory-listing line.
2180 Replace various columns with version control information, VC-INFO.
2181 This code, like dired, assumes UNIX -l format."
2182 (beginning-of-line)
2183 (when (re-search-forward
2184 ;; Match link count, owner, group, size. Group may be missing,
2185 ;; and only the size is present in OS/2 -l format.
2186 "^..[drwxlts-]+ \\( *[0-9]+\\( [^ ]+ +\\([^ ]+ +\\)?[0-9]+\\)?\\) "
2187 (line-end-position) t)
2188 (replace-match (substring (concat vc-info " ") 0 10)
2189 t t nil 1)))
2191 (defun vc-dired-hook ()
2192 "Reformat the listing according to version control.
2193 Called by dired after any portion of a vc-dired buffer has been read in."
2194 (message "Getting version information... ")
2195 (let (subdir filename (buffer-read-only nil) cvs-dir)
2196 (goto-char (point-min))
2197 (while (not (eobp))
2198 (cond
2199 ;; subdir header line
2200 ((setq subdir (dired-get-subdir))
2201 ;; if the backend supports it, get the state
2202 ;; of all files in this directory at once
2203 (let ((backend (vc-responsible-backend subdir)))
2204 (if (vc-find-backend-function backend 'dir-state)
2205 (vc-call-backend backend 'dir-state subdir)))
2206 (forward-line 1)
2207 ;; erase (but don't remove) the "total" line
2208 (delete-region (point) (line-end-position))
2209 (beginning-of-line)
2210 (forward-line 1))
2211 ;; file line
2212 ((setq filename (dired-get-filename nil t))
2213 (cond
2214 ;; subdir
2215 ((file-directory-p filename)
2216 (cond
2217 ((member (file-name-nondirectory filename)
2218 vc-directory-exclusion-list)
2219 (let ((pos (point)))
2220 (dired-kill-tree filename)
2221 (goto-char pos)
2222 (dired-kill-line)))
2223 (vc-dired-terse-mode
2224 ;; Don't show directories in terse mode. Don't use
2225 ;; dired-kill-line to remove it, because in recursive listings,
2226 ;; that would remove the directory contents as well.
2227 (delete-region (line-beginning-position)
2228 (progn (forward-line 1) (point))))
2229 ((string-match "\\`\\.\\.?\\'" (file-name-nondirectory filename))
2230 (dired-kill-line))
2232 (vc-dired-reformat-line nil)
2233 (forward-line 1))))
2234 ;; ordinary file
2235 ((and (vc-backend filename)
2236 (not (and vc-dired-terse-mode
2237 (vc-up-to-date-p filename))))
2238 (vc-dired-reformat-line (vc-call dired-state-info filename))
2239 (forward-line 1))
2241 (dired-kill-line))))
2242 ;; any other line
2243 (t (forward-line 1))))
2244 (vc-dired-purge))
2245 (message "Getting version information... done")
2246 (save-restriction
2247 (widen)
2248 (cond ((eq (count-lines (point-min) (point-max)) 1)
2249 (goto-char (point-min))
2250 (message "No files locked under %s" default-directory)))))
2252 (defun vc-dired-purge ()
2253 "Remove empty subdirs."
2254 (let (subdir)
2255 (goto-char (point-min))
2256 (while (setq subdir (dired-get-subdir))
2257 (forward-line 2)
2258 (if (dired-get-filename nil t)
2259 (if (not (dired-next-subdir 1 t))
2260 (goto-char (point-max)))
2261 (forward-line -2)
2262 (if (not (string= (dired-current-directory) default-directory))
2263 (dired-do-kill-lines t "")
2264 ;; We cannot remove the top level directory.
2265 ;; Just make it look a little nicer.
2266 (forward-line 1)
2267 (kill-line)
2268 (if (not (dired-next-subdir 1 t))
2269 (goto-char (point-max))))))
2270 (goto-char (point-min))))
2272 (defun vc-dired-buffers-for-dir (dir)
2273 "Return a list of all vc-dired buffers that currently display DIR."
2274 (let (result)
2275 ;; Check whether dired is loaded.
2276 (when (fboundp 'dired-buffers-for-dir)
2277 (mapcar (lambda (buffer)
2278 (with-current-buffer buffer
2279 (if vc-dired-mode
2280 (setq result (append result (list buffer))))))
2281 (dired-buffers-for-dir dir)))
2282 result))
2284 (defun vc-dired-resynch-file (file)
2285 "Update the entries for FILE in any VC Dired buffers that list it."
2286 (let ((buffers (vc-dired-buffers-for-dir (file-name-directory file))))
2287 (when buffers
2288 (mapcar (lambda (buffer)
2289 (with-current-buffer buffer
2290 (if (dired-goto-file file)
2291 ;; bind vc-dired-terse-mode to nil so that
2292 ;; files won't vanish when they are checked in
2293 (let ((vc-dired-terse-mode nil))
2294 (dired-do-redisplay 1)))))
2295 buffers))))
2297 ;;;###autoload
2298 (defun vc-directory (dir read-switches)
2299 "Create a buffer in VC Dired Mode for directory DIR.
2301 See Info node `VC Dired Mode'.
2303 With prefix arg READ-SWITCHES, specify a value to override
2304 `dired-listing-switches' when generating the listing."
2305 (interactive "DDired under VC (directory): \nP")
2306 (let ((vc-dired-switches (concat vc-dired-listing-switches
2307 (if vc-dired-recurse "R" ""))))
2308 (if read-switches
2309 (setq vc-dired-switches
2310 (read-string "Dired listing switches: "
2311 vc-dired-switches)))
2312 (require 'dired)
2313 (require 'dired-aux)
2314 (switch-to-buffer
2315 (dired-internal-noselect (expand-file-name (file-name-as-directory dir))
2316 vc-dired-switches
2317 'vc-dired-mode))))
2320 ;; Named-configuration entry points
2322 (defun vc-snapshot-precondition (dir)
2323 "Scan the tree below DIR, looking for files not up-to-date.
2324 If any file is not up-to-date, return the name of the first such file.
2325 \(This means, neither snapshot creation nor retrieval is allowed.\)
2326 If one or more of the files are currently visited, return `visited'.
2327 Otherwise, return nil."
2328 (let ((status nil))
2329 (catch 'vc-locked-example
2330 (vc-file-tree-walk
2332 (lambda (f)
2333 (if (not (vc-up-to-date-p f)) (throw 'vc-locked-example f)
2334 (if (get-file-buffer f) (setq status 'visited)))))
2335 status)))
2337 ;;;###autoload
2338 (defun vc-create-snapshot (dir name branchp)
2339 "Descending recursively from DIR, make a snapshot called NAME.
2340 For each registered file, the version level of its latest version
2341 becomes part of the named configuration. If the prefix argument
2342 BRANCHP is given, the snapshot is made as a new branch and the files
2343 are checked out in that new branch."
2344 (interactive
2345 (list (read-file-name "Directory: " default-directory default-directory t)
2346 (read-string "New snapshot name: ")
2347 current-prefix-arg))
2348 (message "Making %s... " (if branchp "branch" "snapshot"))
2349 (if (file-directory-p dir) (setq dir (file-name-as-directory dir)))
2350 (vc-call-backend (vc-responsible-backend dir)
2351 'create-snapshot dir name branchp)
2352 (message "Making %s... done" (if branchp "branch" "snapshot")))
2354 (defun vc-default-create-snapshot (backend dir name branchp)
2355 (when branchp
2356 (error "VC backend %s does not support module branches" backend))
2357 (let ((result (vc-snapshot-precondition dir)))
2358 (if (stringp result)
2359 (error "File %s is not up-to-date" result)
2360 (vc-file-tree-walk
2362 (lambda (f)
2363 (vc-call assign-name f name))))))
2365 ;;;###autoload
2366 (defun vc-retrieve-snapshot (dir name)
2367 "Descending recursively from DIR, retrieve the snapshot called NAME.
2368 If NAME is empty, it refers to the latest versions.
2369 If locking is used for the files in DIR, then there must not be any
2370 locked files at or below DIR (but if NAME is empty, locked files are
2371 allowed and simply skipped)."
2372 (interactive
2373 (list (read-file-name "Directory: " default-directory default-directory t)
2374 (read-string "Snapshot name to retrieve (default latest versions): ")))
2375 (let ((update (yes-or-no-p "Update any affected buffers? "))
2376 (msg (if (or (not name) (string= name ""))
2377 (format "Updating %s... " (abbreviate-file-name dir))
2378 (format "Retrieving snapshot into %s... "
2379 (abbreviate-file-name dir)))))
2380 (message msg)
2381 (vc-call-backend (vc-responsible-backend dir)
2382 'retrieve-snapshot dir name update)
2383 (message (concat msg "done"))))
2385 (defun vc-default-retrieve-snapshot (backend dir name update)
2386 (if (string= name "")
2387 (progn
2388 (vc-file-tree-walk
2390 (lambda (f) (and
2391 (vc-up-to-date-p f)
2392 (vc-error-occurred
2393 (vc-call checkout f nil "")
2394 (if update (vc-resynch-buffer f t t)))))))
2395 (let ((result (vc-snapshot-precondition dir)))
2396 (if (stringp result)
2397 (error "File %s is locked" result)
2398 (setq update (and (eq result 'visited) update))
2399 (vc-file-tree-walk
2401 (lambda (f) (vc-error-occurred
2402 (vc-call checkout f nil name)
2403 (if update (vc-resynch-buffer f t t)))))))))
2405 ;; Miscellaneous other entry points
2407 ;;;###autoload
2408 (defun vc-print-log ()
2409 "List the change log of the current buffer in a window."
2410 (interactive)
2411 (vc-ensure-vc-buffer)
2412 (let ((file buffer-file-name))
2413 (vc-call print-log file)
2414 (set-buffer "*vc*")
2415 (pop-to-buffer (current-buffer))
2416 (log-view-mode)
2417 (vc-exec-after
2418 `(let ((inhibit-read-only t))
2419 (goto-char (point-max)) (forward-line -1)
2420 (while (looking-at "=*\n")
2421 (delete-char (- (match-end 0) (match-beginning 0)))
2422 (forward-line -1))
2423 (goto-char (point-min))
2424 (if (looking-at "[\b\t\n\v\f\r ]+")
2425 (delete-char (- (match-end 0) (match-beginning 0))))
2426 (shrink-window-if-larger-than-buffer)
2427 ;; move point to the log entry for the current version
2428 (vc-call-backend ',(vc-backend file)
2429 'show-log-entry
2430 ',(vc-workfile-version file))
2431 (set-buffer-modified-p nil)))))
2433 (defun vc-default-show-log-entry (backend rev)
2434 (log-view-goto-rev rev))
2436 (defun vc-default-comment-history (backend file)
2437 "Return a string with all log entries stored in BACKEND for FILE."
2438 (if (vc-find-backend-function backend 'print-log)
2439 (with-current-buffer "*vc*"
2440 (vc-call print-log file)
2441 (vc-call wash-log file)
2442 (buffer-string))))
2444 (defun vc-default-wash-log (backend file)
2445 "Remove all non-comment information from log output.
2446 This default implementation works for RCS logs; backends should override
2447 it if their logs are not in RCS format."
2448 (let ((separator (concat "^-+\nrevision [0-9.]+\ndate: .*\n"
2449 "\\(branches: .*;\n\\)?"
2450 "\\(\\*\\*\\* empty log message \\*\\*\\*\n\\)?")))
2451 (goto-char (point-max)) (forward-line -1)
2452 (while (looking-at "=*\n")
2453 (delete-char (- (match-end 0) (match-beginning 0)))
2454 (forward-line -1))
2455 (goto-char (point-min))
2456 (if (looking-at "[\b\t\n\v\f\r ]+")
2457 (delete-char (- (match-end 0) (match-beginning 0))))
2458 (goto-char (point-min))
2459 (re-search-forward separator nil t)
2460 (delete-region (point-min) (point))
2461 (while (re-search-forward separator nil t)
2462 (delete-region (match-beginning 0) (match-end 0)))))
2464 ;;;###autoload
2465 (defun vc-revert-buffer ()
2466 "Revert the current buffer's file to the version it was based on.
2467 This asks for confirmation if the buffer contents are not identical
2468 to that version. This function does not automatically pick up newer
2469 changes found in the master file; use \\[universal-argument] \\[vc-next-action] to do so."
2470 (interactive)
2471 (vc-ensure-vc-buffer)
2472 ;; Make sure buffer is saved. If the user says `no', abort since
2473 ;; we cannot show the changes and ask for confirmation to discard them.
2474 (vc-buffer-sync nil)
2475 (let ((file buffer-file-name)
2476 ;; This operation should always ask for confirmation.
2477 (vc-suppress-confirm nil)
2478 (obuf (current-buffer))
2479 status)
2480 (if (vc-up-to-date-p file)
2481 (unless (yes-or-no-p "File seems up-to-date. Revert anyway? ")
2482 (error "Revert canceled")))
2483 (unless (vc-workfile-unchanged-p file)
2484 ;; vc-diff selects the new window, which is not what we want:
2485 ;; if the new window is on another frame, that'd require the user
2486 ;; moving her mouse to answer the yes-or-no-p question.
2487 (let ((win (save-selected-window
2488 (setq status (vc-diff nil t)) (selected-window))))
2489 (vc-exec-after `(message nil))
2490 (when status
2491 (unwind-protect
2492 (unless (yes-or-no-p "Discard changes? ")
2493 (error "Revert canceled"))
2494 (select-window win)
2495 (if (one-window-p t)
2496 (if (window-dedicated-p (selected-window))
2497 (make-frame-invisible))
2498 (delete-window))))))
2499 (set-buffer obuf)
2500 ;; Do the reverting
2501 (message "Reverting %s..." file)
2502 (vc-revert-file file)
2503 (message "Reverting %s...done" file)))
2505 ;;;###autoload
2506 (defun vc-update ()
2507 "Update the current buffer's file to the latest version on its branch.
2508 If the file contains no changes, and is not locked, then this simply replaces
2509 the working file with the latest version on its branch. If the file contains
2510 changes, and the backend supports merging news, then any recent changes from
2511 the current branch are merged into the working file."
2512 (interactive)
2513 (vc-ensure-vc-buffer)
2514 (vc-buffer-sync nil)
2515 (let ((file buffer-file-name))
2516 (if (vc-up-to-date-p file)
2517 (vc-checkout file nil "")
2518 (if (eq (vc-checkout-model file) 'locking)
2519 (if (eq (vc-state file) 'edited)
2520 (error
2521 (substitute-command-keys
2522 "File is locked--type \\[vc-revert-buffer] to discard changes"))
2523 (error
2524 (substitute-command-keys
2525 "Unexpected file state (%s)--type \\[vc-next-action] to correct")
2526 (vc-state file)))
2527 (if (not (vc-find-backend-function (vc-backend file) 'merge-news))
2528 (error "Sorry, merging news is not implemented for %s"
2529 (vc-backend file))
2530 (vc-call merge-news file)
2531 (vc-resynch-window file t t))))))
2533 (defun vc-version-backup-file (file &optional rev)
2534 "Return name of backup file for revision REV of FILE.
2535 If version backups should be used for FILE, and there exists
2536 such a backup for REV or the current workfile version of file,
2537 return its name; otherwise return nil."
2538 (when (vc-call make-version-backups-p file)
2539 (let ((backup-file (vc-version-backup-file-name file rev)))
2540 (if (file-exists-p backup-file)
2541 backup-file
2542 ;; there is no automatic backup, but maybe the user made one manually
2543 (setq backup-file (vc-version-backup-file-name file rev 'manual))
2544 (if (file-exists-p backup-file)
2545 backup-file)))))
2547 (defun vc-revert-file (file)
2548 "Revert FILE back to the version it was based on."
2549 (with-vc-properties
2550 file
2551 (let ((backup-file (vc-version-backup-file file)))
2552 (when backup-file
2553 (copy-file backup-file file 'ok-if-already-exists 'keep-date)
2554 (vc-delete-automatic-version-backups file))
2555 (vc-call revert file backup-file))
2556 `((vc-state . up-to-date)
2557 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
2558 (vc-resynch-buffer file t t))
2560 ;;;###autoload
2561 (defun vc-cancel-version (norevert)
2562 "Get rid of most recently checked in version of this file.
2563 A prefix argument NOREVERT means do not revert the buffer afterwards."
2564 (interactive "P")
2565 (vc-ensure-vc-buffer)
2566 (let* ((file (buffer-file-name))
2567 (backend (vc-backend file))
2568 (target (vc-workfile-version file))
2569 (config (current-window-configuration)) done)
2570 (cond
2571 ((not (vc-find-backend-function backend 'cancel-version))
2572 (error "Sorry, canceling versions is not supported under %s" backend))
2573 ((not (vc-call latest-on-branch-p file))
2574 (error "This is not the latest version; VC cannot cancel it"))
2575 ((not (vc-up-to-date-p file))
2576 (error (substitute-command-keys "File is not up to date; use \\[vc-revert-buffer] to discard changes"))))
2577 (if (null (yes-or-no-p (format "Remove version %s from master? " target)))
2578 (error "Aborted")
2579 (setq norevert (or norevert (not
2580 (yes-or-no-p "Revert buffer to most recent remaining version? "))))
2582 (message "Removing last change from %s..." file)
2583 (with-vc-properties
2584 file
2585 (vc-call cancel-version file norevert)
2586 `((vc-state . ,(if norevert 'edited 'up-to-date))
2587 (vc-checkout-time . ,(if norevert
2589 (nth 5 (file-attributes file))))
2590 (vc-workfile-version . nil)))
2591 (message "Removing last change from %s...done" file)
2593 (cond
2594 (norevert ;; clear version headers and mark the buffer modified
2595 (set-visited-file-name file)
2596 (when (not vc-make-backup-files)
2597 ;; inhibit backup for this buffer
2598 (make-local-variable 'backup-inhibited)
2599 (setq backup-inhibited t))
2600 (setq buffer-read-only nil)
2601 (vc-clear-headers)
2602 (vc-mode-line file)
2603 (vc-dired-resynch-file file))
2604 (t ;; revert buffer to file on disk
2605 (vc-resynch-buffer file t t)))
2606 (message "Version %s has been removed from the master" target))))
2608 ;;;###autoload
2609 (defun vc-switch-backend (file backend)
2610 "Make BACKEND the current version control system for FILE.
2611 FILE must already be registered in BACKEND. The change is not
2612 permanent, only for the current session. This function only changes
2613 VC's perspective on FILE, it does not register or unregister it.
2614 By default, this command cycles through the registered backends.
2615 To get a prompt, use a prefix argument."
2616 (interactive
2617 (list
2618 buffer-file-name
2619 (let ((backend (vc-backend buffer-file-name))
2620 (backends nil))
2621 ;; Find the registered backends.
2622 (dolist (backend vc-handled-backends)
2623 (when (vc-call-backend backend 'registered buffer-file-name)
2624 (push backend backends)))
2625 ;; Find the next backend.
2626 (let ((def (car (delq backend (append (memq backend backends) backends))))
2627 (others (delete backend backends)))
2628 (cond
2629 ((null others) (error "No other backend to switch to"))
2630 (current-prefix-arg
2631 (intern
2632 (upcase
2633 (completing-read
2634 (format "Switch to backend [%s]: " def)
2635 (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends)
2636 nil t nil nil (downcase (symbol-name def))))))
2637 (t def))))))
2638 (unless (eq backend (vc-backend file))
2639 (vc-file-clearprops file)
2640 (vc-file-setprop file 'vc-backend backend)
2641 ;; Force recomputation of the state
2642 (unless (vc-call-backend backend 'registered file)
2643 (vc-file-clearprops file)
2644 (error "%s is not registered in %s" file backend))
2645 (vc-mode-line file)))
2647 ;;;###autoload
2648 (defun vc-transfer-file (file new-backend)
2649 "Transfer FILE to another version control system NEW-BACKEND.
2650 If NEW-BACKEND has a higher precedence than FILE's current backend
2651 \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
2652 NEW-BACKEND, using the version number from the current backend as the
2653 base level. If NEW-BACKEND has a lower precedence than the current
2654 backend, then commit all changes that were made under the current
2655 backend to NEW-BACKEND, and unregister FILE from the current backend.
2656 \(If FILE is not yet registered under NEW-BACKEND, register it.)"
2657 (let* ((old-backend (vc-backend file))
2658 (edited (memq (vc-state file) '(edited needs-merge)))
2659 (registered (vc-call-backend new-backend 'registered file))
2660 (move
2661 (and registered ; Never move if not registered in new-backend yet.
2662 ;; move if new-backend comes later in vc-handled-backends
2663 (or (memq new-backend (memq old-backend vc-handled-backends))
2664 (y-or-n-p "Final transfer? "))))
2665 (comment nil))
2666 (if (eq old-backend new-backend)
2667 (error "%s is the current backend of %s" new-backend file))
2668 (if registered
2669 (set-file-modes file (logior (file-modes file) 128))
2670 ;; `registered' might have switched under us.
2671 (vc-switch-backend file old-backend)
2672 (let* ((rev (vc-workfile-version file))
2673 (modified-file (and edited (make-temp-file file)))
2674 (unmodified-file (and modified-file (vc-version-backup-file file))))
2675 ;; Go back to the base unmodified file.
2676 (unwind-protect
2677 (progn
2678 (when modified-file
2679 (copy-file file modified-file 'ok-if-already-exists)
2680 ;; If we have a local copy of the unmodified file, handle that
2681 ;; here and not in vc-revert-file because we don't want to
2682 ;; delete that copy -- it is still useful for OLD-BACKEND.
2683 (if unmodified-file
2684 (copy-file unmodified-file file 'ok-if-already-exists)
2685 (if (y-or-n-p "Get base version from master? ")
2686 (vc-revert-file file))))
2687 (vc-call-backend new-backend 'receive-file file rev))
2688 (when modified-file
2689 (vc-switch-backend file new-backend)
2690 (unless (eq (vc-checkout-model file) 'implicit)
2691 (vc-checkout file t nil))
2692 (rename-file modified-file file 'ok-if-already-exists)
2693 (vc-file-setprop file 'vc-checkout-time nil)))))
2694 (when move
2695 (vc-switch-backend file old-backend)
2696 (setq comment (vc-call comment-history file))
2697 (vc-call unregister file))
2698 (vc-switch-backend file new-backend)
2699 (when (or move edited)
2700 (vc-file-setprop file 'vc-state 'edited)
2701 (vc-mode-line file)
2702 (vc-checkin file nil comment (stringp comment)))))
2704 (defun vc-default-unregister (backend file)
2705 "Default implementation of `vc-unregister', signals an error."
2706 (error "Unregistering files is not supported for %s" backend))
2708 (defun vc-default-receive-file (backend file rev)
2709 "Let BACKEND receive FILE from another version control system."
2710 (vc-call-backend backend 'register file rev ""))
2712 (defun vc-rename-master (oldmaster newfile templates)
2713 "Rename OLDMASTER to be the master file for NEWFILE based on TEMPLATES."
2714 (let* ((dir (file-name-directory (expand-file-name oldmaster)))
2715 (newdir (or (file-name-directory newfile) ""))
2716 (newbase (file-name-nondirectory newfile))
2717 (masters
2718 ;; List of potential master files for `newfile'
2719 (mapcar
2720 (lambda (s) (vc-possible-master s newdir newbase))
2721 templates)))
2722 (if (or (file-symlink-p oldmaster)
2723 (file-symlink-p (file-name-directory oldmaster)))
2724 (error "This is unsafe in the presence of symbolic links"))
2725 (rename-file
2726 oldmaster
2727 (catch 'found
2728 ;; If possible, keep the master file in the same directory.
2729 (mapcar (lambda (f)
2730 (if (and f (string= (file-name-directory (expand-file-name f))
2731 dir))
2732 (throw 'found f)))
2733 masters)
2734 ;; If not, just use the first possible place.
2735 (mapcar (lambda (f)
2736 (and f
2737 (or (not (setq dir (file-name-directory f)))
2738 (file-directory-p dir))
2739 (throw 'found f)))
2740 masters)
2741 (error "New file lacks a version control directory")))))
2743 ;;;###autoload
2744 (defun vc-rename-file (old new)
2745 "Rename file OLD to NEW, and rename its master file likewise."
2746 (interactive "fVC rename file: \nFRename to: ")
2747 (let ((oldbuf (get-file-buffer old))
2748 (backend (vc-backend old)))
2749 (unless (or (null backend) (vc-find-backend-function backend 'rename-file))
2750 (error "Renaming files under %s is not supported in VC" backend))
2751 (if (and oldbuf (buffer-modified-p oldbuf))
2752 (error "Please save files before moving them"))
2753 (if (get-file-buffer new)
2754 (error "Already editing new file name"))
2755 (if (file-exists-p new)
2756 (error "New file already exists"))
2757 (when backend
2758 (if (and backend (not (vc-up-to-date-p old)))
2759 (error "Please check in files before moving them"))
2760 (vc-call-backend backend 'rename-file old new))
2761 ;; Move the actual file (unless the backend did it already)
2762 (if (or (not backend) (file-exists-p old))
2763 (rename-file old new))
2764 ;; ?? Renaming a file might change its contents due to keyword expansion.
2765 ;; We should really check out a new copy if the old copy was precisely equal
2766 ;; to some checked in version. However, testing for this is tricky....
2767 (if oldbuf
2768 (with-current-buffer oldbuf
2769 (let ((buffer-read-only buffer-read-only))
2770 (set-visited-file-name new))
2771 (vc-backend new)
2772 (vc-mode-line new)
2773 (set-buffer-modified-p nil)))))
2775 ;; Only defined in very recent Emacsen
2776 (defvar small-temporary-file-directory nil)
2778 ;;;###autoload
2779 (defun vc-update-change-log (&rest args)
2780 "Find change log file and add entries from recent version control logs.
2781 Normally, find log entries for all registered files in the default
2782 directory.
2784 With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
2786 With any numeric prefix arg, find log entries for all currently visited
2787 files that are under version control. This puts all the entries in the
2788 log for the default directory, which may not be appropriate.
2790 From a program, any ARGS are assumed to be filenames for which
2791 log entries should be gathered."
2792 (interactive
2793 (cond ((consp current-prefix-arg) ;C-u
2794 (list buffer-file-name))
2795 (current-prefix-arg ;Numeric argument.
2796 (let ((files nil)
2797 (buffers (buffer-list))
2798 file)
2799 (while buffers
2800 (setq file (buffer-file-name (car buffers)))
2801 (and file (vc-backend file)
2802 (setq files (cons file files)))
2803 (setq buffers (cdr buffers)))
2804 files))
2806 ;; Don't supply any filenames to backend; this means
2807 ;; it should find all relevant files relative to
2808 ;; the default-directory.
2809 nil)))
2810 (vc-call-backend (vc-responsible-backend default-directory)
2811 'update-changelog args))
2813 (defun vc-default-update-changelog (backend files)
2814 "Default implementation of update-changelog.
2815 Uses `rcs2log' which only works for RCS and CVS."
2816 ;; FIXME: We (c|sh)ould add support for cvs2cl
2817 (let ((odefault default-directory)
2818 (changelog (find-change-log))
2819 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
2820 (tempfile (make-temp-file
2821 (expand-file-name "vc"
2822 (or small-temporary-file-directory
2823 temporary-file-directory))))
2824 (full-name (or add-log-full-name
2825 (user-full-name)
2826 (user-login-name)
2827 (format "uid%d" (number-to-string (user-uid)))))
2828 (mailing-address (or add-log-mailing-address
2829 user-mail-address)))
2830 (find-file-other-window changelog)
2831 (barf-if-buffer-read-only)
2832 (vc-buffer-sync)
2833 (undo-boundary)
2834 (goto-char (point-min))
2835 (push-mark)
2836 (message "Computing change log entries...")
2837 (message "Computing change log entries... %s"
2838 (unwind-protect
2839 (progn
2840 (setq default-directory odefault)
2841 (if (eq 0 (apply 'call-process
2842 (expand-file-name "rcs2log"
2843 exec-directory)
2844 nil (list t tempfile) nil
2845 "-c" changelog
2846 "-u" (concat (vc-user-login-name)
2847 "\t" full-name
2848 "\t" mailing-address)
2849 (mapcar
2850 (lambda (f)
2851 (file-relative-name
2852 (if (file-name-absolute-p f)
2854 (concat odefault f))))
2855 files)))
2856 "done"
2857 (pop-to-buffer
2858 (set-buffer (get-buffer-create "*vc*")))
2859 (erase-buffer)
2860 (insert-file tempfile)
2861 "failed"))
2862 (setq default-directory (file-name-directory changelog))
2863 (delete-file tempfile)))))
2865 ;; Annotate functionality
2867 ;; Declare globally instead of additional parameter to
2868 ;; temp-buffer-show-function (not possible to pass more than one
2869 ;; parameter). The use of annotate-ratio is deprecated in favor of
2870 ;; annotate-mode, which replaces it with the more sensible "span-to
2871 ;; days", along with autoscaling support.
2872 (defvar vc-annotate-ratio nil "Global variable.")
2873 (defvar vc-annotate-backend nil "Global variable.")
2875 (defconst vc-annotate-font-lock-keywords
2876 ;; The fontification is done by vc-annotate-lines instead of font-lock.
2877 '((vc-annotate-lines)))
2879 (defun vc-annotate-get-backend (buffer)
2880 "Return the backend matching \"Annotate\" buffer BUFFER.
2881 Return nil if no match made. Associations are made based on
2882 `vc-annotate-buffers'."
2883 (cdr (assoc buffer vc-annotate-buffers)))
2885 (define-derived-mode vc-annotate-mode fundamental-mode "Annotate"
2886 "Major mode for output buffers of the `vc-annotate' command.
2888 You can use the mode-specific menu to alter the time-span of the used
2889 colors. See variable `vc-annotate-menu-elements' for customizing the
2890 menu items."
2891 (set (make-local-variable 'truncate-lines) t)
2892 (set (make-local-variable 'font-lock-defaults)
2893 '(vc-annotate-font-lock-keywords t))
2894 (vc-annotate-add-menu))
2896 (defun vc-annotate-display-default (&optional ratio)
2897 "Display the output of \\[vc-annotate] using the default color range.
2898 The color range is given by `vc-annotate-color-map', scaled by RATIO
2899 if present. The current time is used as the offset."
2900 (interactive "e")
2901 (message "Redisplaying annotation...")
2902 (vc-annotate-display
2903 (if ratio (vc-annotate-time-span vc-annotate-color-map ratio)))
2904 (message "Redisplaying annotation...done"))
2906 (defun vc-annotate-display-autoscale (&optional full)
2907 "Highlight the output of \\[vc-annotate]] using an autoscaled color map.
2908 Autoscaling means that the map is scaled from the current time to the
2909 oldest annotation in the buffer, or, with argument FULL non-nil, to
2910 cover the range from the oldest annotation to the newest."
2911 (interactive)
2912 (let ((newest 0.0)
2913 (oldest 999999.) ;Any CVS users at the founding of Rome?
2914 (current (vc-annotate-convert-time (current-time)))
2915 date)
2916 (message "Redisplaying annotation...")
2917 ;; Run through this file and find the oldest and newest dates annotated.
2918 (save-excursion
2919 (goto-char (point-min))
2920 (while (setq date (vc-call-backend vc-annotate-backend 'annotate-time))
2921 (if (> date newest)
2922 (setq newest date))
2923 (if (< date oldest)
2924 (setq oldest date))))
2925 (vc-annotate-display
2926 (vc-annotate-time-span ;return the scaled colormap.
2927 vc-annotate-color-map
2928 (/ (- (if full newest current) oldest)
2929 (vc-annotate-car-last-cons vc-annotate-color-map)))
2930 (if full newest))
2931 (message "Redisplaying annotation...done \(%s\)"
2932 (if full
2933 (format "Spanned from %.1f to %.1f days old"
2934 (- current oldest)
2935 (- current newest))
2936 (format "Spanned to %.1f days old" (- current oldest))))))
2938 ;; Menu -- Using easymenu.el
2939 (defun vc-annotate-add-menu ()
2940 "Add the menu 'Annotate' to the menu bar in VC-Annotate mode."
2941 (let ((menu-elements vc-annotate-menu-elements)
2942 (menu-def
2943 '("VC-Annotate"
2944 ["Default" (unless (null vc-annotate-display-mode)
2945 (setq vc-annotate-display-mode nil)
2946 (vc-annotate-display-select))
2947 :style toggle :selected (null vc-annotate-display-mode)]))
2948 (oldest-in-map (vc-annotate-car-last-cons vc-annotate-color-map)))
2949 (while menu-elements
2950 (let* ((element (car menu-elements))
2951 (days (* element oldest-in-map)))
2952 (setq menu-elements (cdr menu-elements))
2953 (setq menu-def
2954 (append menu-def
2955 `([,(format "Span %.1f days" days)
2956 (unless (and (numberp vc-annotate-display-mode)
2957 (= vc-annotate-display-mode ,days))
2958 (vc-annotate-display-select nil ,days))
2959 :style toggle :selected
2960 (and (numberp vc-annotate-display-mode)
2961 (= vc-annotate-display-mode ,days)) ])))))
2962 (setq menu-def
2963 (append menu-def
2964 (list
2965 ["Span ..."
2966 (let ((days
2967 (float (string-to-number
2968 (read-string "Span how many days? ")))))
2969 (vc-annotate-display-select nil days)) t])
2970 (list "--")
2971 (list
2972 ["Span to Oldest"
2973 (unless (eq vc-annotate-display-mode 'scale)
2974 (vc-annotate-display-select nil 'scale))
2975 :style toggle :selected
2976 (eq vc-annotate-display-mode 'scale)])
2977 (list
2978 ["Span Oldest->Newest"
2979 (unless (eq vc-annotate-display-mode 'fullscale)
2980 (vc-annotate-display-select nil 'fullscale))
2981 :style toggle :selected
2982 (eq vc-annotate-display-mode 'fullscale)])))
2983 ;; Define the menu
2984 (if (or (featurep 'easymenu) (load "easymenu" t))
2985 (easy-menu-define vc-annotate-mode-menu vc-annotate-mode-map
2986 "VC Annotate Display Menu" menu-def))))
2988 (defun vc-annotate-display-select (&optional buffer mode)
2989 "Highlight the output of \\[vc-annotate].
2990 By default, the current buffer is highlighted, unless overridden by
2991 BUFFER. `vc-annotate-display-mode' specifies the highlighting mode to
2992 use; you may override this using the second optional arg MODE."
2993 (interactive)
2994 (if mode (setq vc-annotate-display-mode mode))
2995 (when buffer
2996 (set-buffer buffer)
2997 (display-buffer buffer))
2998 (if (not vc-annotate-mode) ; Turn on vc-annotate-mode if not done
2999 (vc-annotate-mode))
3000 (cond ((null vc-annotate-display-mode)
3001 (vc-annotate-display-default vc-annotate-ratio))
3002 ;; One of the auto-scaling modes
3003 ((eq vc-annotate-display-mode 'scale)
3004 (vc-annotate-display-autoscale))
3005 ((eq vc-annotate-display-mode 'fullscale)
3006 (vc-annotate-display-autoscale t))
3007 ((numberp vc-annotate-display-mode) ; A fixed number of days lookback
3008 (vc-annotate-display-default
3009 (/ vc-annotate-display-mode (vc-annotate-car-last-cons
3010 vc-annotate-color-map))))
3011 (t (error "No such display mode: %s"
3012 vc-annotate-display-mode))))
3014 ;;;; (defun vc-BACKEND-annotate-command (file buffer) ...)
3015 ;;;; Execute "annotate" on FILE by using `call-process' and insert
3016 ;;;; the contents in BUFFER.
3018 ;;;###autoload
3019 (defun vc-annotate (prefix)
3020 "Display the edit history of the current file using colours.
3022 This command creates a buffer that shows, for each line of the current
3023 file, when it was last edited and by whom. Additionally, colours are
3024 used to show the age of each line--blue means oldest, red means
3025 youngest, and intermediate colours indicate intermediate ages. By
3026 default, the time scale stretches back one year into the past;
3027 everything that is older than that is shown in blue.
3029 With a prefix argument, this command asks two questions in the
3030 minibuffer. First, you may enter a version number; then the buffer
3031 displays and annotates that version instead of the current version
3032 \(type RET in the minibuffer to leave that default unchanged). Then,
3033 you are prompted for the time span in days which the color range
3034 should cover. For example, a time span of 20 days means that changes
3035 over the past 20 days are shown in red to blue, according to their
3036 age, and everything that is older than that is shown in blue.
3038 Customization variables:
3040 `vc-annotate-menu-elements' customizes the menu elements of the
3041 mode-specific menu. `vc-annotate-color-map' and
3042 `vc-annotate-very-old-color' defines the mapping of time to
3043 colors. `vc-annotate-background' specifies the background color."
3044 (interactive "P")
3045 (vc-ensure-vc-buffer)
3046 (let* ((temp-buffer-name (concat "*Annotate " (buffer-name) "*"))
3047 (temp-buffer-show-function 'vc-annotate-display-select)
3048 (rev (vc-workfile-version (buffer-file-name)))
3049 (vc-annotate-version
3050 (if prefix (read-string
3051 (format "Annotate from version: (default %s) " rev)
3052 nil nil rev)
3053 rev)))
3054 (if prefix
3055 (setq vc-annotate-display-mode
3056 (float (string-to-number
3057 (read-string "Annotate span days: (default 20) "
3058 nil nil "20")))))
3059 (setq vc-annotate-backend (vc-backend (buffer-file-name)))
3060 (message "Annotating...")
3061 (if (not (vc-find-backend-function vc-annotate-backend 'annotate-command))
3062 (error "Sorry, annotating is not implemented for %s"
3063 vc-annotate-backend))
3064 (with-output-to-temp-buffer temp-buffer-name
3065 (vc-call-backend vc-annotate-backend 'annotate-command
3066 (file-name-nondirectory (buffer-file-name))
3067 (get-buffer temp-buffer-name)
3068 vc-annotate-version))
3069 ;; Don't use the temp-buffer-name until the buffer is created
3070 ;; (only after `with-output-to-temp-buffer'.)
3071 (setq vc-annotate-buffers
3072 (append vc-annotate-buffers
3073 (list (cons (get-buffer temp-buffer-name) vc-annotate-backend))))
3074 (message "Annotating... done")))
3076 (defun vc-annotate-car-last-cons (a-list)
3077 "Return car of last cons in association list A-LIST."
3078 (if (not (eq nil (cdr a-list)))
3079 (vc-annotate-car-last-cons (cdr a-list))
3080 (car (car a-list))))
3082 (defun vc-annotate-time-span (a-list span &optional quantize)
3083 "Apply factor SPAN to the time-span of association list A-LIST.
3084 Return the new alist.
3085 Optionally quantize to the factor of QUANTIZE."
3086 ;; Apply span to each car of every cons
3087 (if (not (eq nil a-list))
3088 (append (list (cons (* (car (car a-list)) span)
3089 (cdr (car a-list))))
3090 (vc-annotate-time-span (nthcdr (or quantize ; optional
3091 1) ; Default to cdr
3092 a-list) span quantize))))
3094 (defun vc-annotate-compcar (threshold a-list)
3095 "Test successive cons cells of A-LIST against THRESHOLD.
3096 Return the first cons cell with a car that is not less than THRESHOLD,
3097 nil if no such cell exists."
3098 (let ((i 1)
3099 (tmp-cons (car a-list)))
3100 (while (and tmp-cons (< (car tmp-cons) threshold))
3101 (setq tmp-cons (car (nthcdr i a-list)))
3102 (setq i (+ i 1)))
3103 tmp-cons)) ; Return the appropriate value
3105 (defun vc-annotate-convert-time (time)
3106 "Convert a time value to a floating-point number of days.
3107 The argument TIME is a list as returned by `current-time' or
3108 `encode-time', only the first two elements of that list are considered."
3109 (/ (+ (* (float (car time)) (lsh 1 16)) (cadr time)) 24 3600))
3111 (defun vc-annotate-difference (&optional offset)
3112 "Return the time span in days to the next annotation.
3113 This calls the backend function annotate-time, and returns the
3114 difference in days between the time returned and the current time,
3115 or OFFSET if present."
3116 (let ((next-time (vc-call-backend vc-annotate-backend 'annotate-time)))
3117 (if next-time
3118 (- (or offset
3119 (vc-call-backend vc-annotate-backend 'annotate-current-time))
3120 next-time))))
3122 (defun vc-default-annotate-current-time (backend)
3123 "Return the current time, encoded as fractional days."
3124 (vc-annotate-convert-time (current-time)))
3126 (defun vc-annotate-display (&optional color-map offset)
3127 "Highlight `vc-annotate' output in the current buffer.
3128 COLOR-MAP, if present, overrides `vc-annotate-color-map'.
3129 The annotations are relative to the current time, unless overridden by OFFSET."
3130 (if (and color-map (not (eq color-map vc-annotate-color-map)))
3131 (set (make-local-variable 'vc-annotate-color-map) color-map))
3132 (set (make-local-variable 'vc-annotate-offset) offset)
3133 (font-lock-mode 1))
3134 (make-obsolete 'vc-annotate-display 'vc-annotate-display-select "21.4")
3136 (defvar vc-annotate-offset nil)
3138 (defun vc-annotate-lines (limit)
3139 (let (difference)
3140 (while (and (< (point) limit)
3141 (setq difference (vc-annotate-difference vc-annotate-offset)))
3142 (let* ((color (or (vc-annotate-compcar difference vc-annotate-color-map)
3143 (cons nil vc-annotate-very-old-color)))
3144 ;; substring from index 1 to remove any leading `#' in the name
3145 (face-name (concat "vc-annotate-face-" (substring (cdr color) 1)))
3146 ;; Make the face if not done.
3147 (face (or (intern-soft face-name)
3148 (let ((tmp-face (make-face (intern face-name))))
3149 (set-face-foreground tmp-face (cdr color))
3150 (if vc-annotate-background
3151 (set-face-background tmp-face
3152 vc-annotate-background))
3153 tmp-face))) ; Return the face
3154 (point (point))
3155 overlay)
3156 (forward-line 1)
3157 (put-text-property point (point) 'face face)))
3158 ;; Pretend to font-lock there were no matches.
3159 nil))
3161 ;; Collect back-end-dependent stuff here
3163 (defalias 'vc-default-logentry-check 'ignore)
3165 (defun vc-check-headers ()
3166 "Check if the current file has any headers in it."
3167 (interactive)
3168 (vc-call-backend (vc-backend buffer-file-name) 'check-headers))
3170 (defun vc-default-check-headers (backend)
3171 "Default implementation of check-headers; always returns nil."
3172 nil)
3174 ;; Back-end-dependent stuff ends here.
3176 ;; Set up key bindings for use while editing log messages
3178 (defun vc-log-edit (file)
3179 "Set up `log-edit' for use with VC on FILE."
3180 (setq default-directory
3181 (if file (file-name-directory file)
3182 (with-current-buffer vc-parent-buffer default-directory)))
3183 (log-edit 'vc-finish-logentry nil
3184 (if file `(lambda () ',(list (file-name-nondirectory file)))
3185 ;; If FILE is nil, we were called from vc-dired.
3186 (lambda ()
3187 (with-current-buffer vc-parent-buffer
3188 (dired-get-marked-files t)))))
3189 (set (make-local-variable 'vc-log-file) file)
3190 (make-local-variable 'vc-log-version)
3191 (set-buffer-modified-p nil)
3192 (setq buffer-file-name nil))
3194 ;; These things should probably be generally available
3196 (defun vc-file-tree-walk (dirname func &rest args)
3197 "Walk recursively through DIRNAME.
3198 Invoke FUNC f ARGS on each VC-managed file f underneath it."
3199 (vc-file-tree-walk-internal (expand-file-name dirname) func args)
3200 (message "Traversing directory %s...done" dirname))
3202 (defun vc-file-tree-walk-internal (file func args)
3203 (if (not (file-directory-p file))
3204 (if (vc-backend file) (apply func file args))
3205 (message "Traversing directory %s..." (abbreviate-file-name file))
3206 (let ((dir (file-name-as-directory file)))
3207 (mapcar
3208 (lambda (f) (or
3209 (string-equal f ".")
3210 (string-equal f "..")
3211 (member f vc-directory-exclusion-list)
3212 (let ((dirf (expand-file-name f dir)))
3214 (file-symlink-p dirf);; Avoid possible loops
3215 (vc-file-tree-walk-internal dirf func args)))))
3216 (directory-files dir)))))
3218 (provide 'vc)
3220 ;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
3222 ;; These may be useful to anyone who has to debug or extend the package.
3223 ;; (Note that this information corresponds to versions 5.x. Some of it
3224 ;; might have been invalidated by the additions to support branching
3225 ;; and RCS keyword lookup. AS, 1995/03/24)
3227 ;; A fundamental problem in VC is that there are time windows between
3228 ;; vc-next-action's computations of the file's version-control state and
3229 ;; the actions that change it. This is a window open to lossage in a
3230 ;; multi-user environment; someone else could nip in and change the state
3231 ;; of the master during it.
3233 ;; The performance problem is that rlog/prs calls are very expensive; we want
3234 ;; to avoid them as much as possible.
3236 ;; ANALYSIS:
3238 ;; The performance problem, it turns out, simplifies in practice to the
3239 ;; problem of making vc-state fast. The two other functions that call
3240 ;; prs/rlog will not be so commonly used that the slowdown is a problem; one
3241 ;; makes snapshots, the other deletes the calling user's last change in the
3242 ;; master.
3244 ;; The race condition implies that we have to either (a) lock the master
3245 ;; during the entire execution of vc-next-action, or (b) detect and
3246 ;; recover from errors resulting from dispatch on an out-of-date state.
3248 ;; Alternative (a) appears to be infeasible. The problem is that we can't
3249 ;; guarantee that the lock will ever be removed. Suppose a user starts a
3250 ;; checkin, the change message buffer pops up, and the user, having wandered
3251 ;; off to do something else, simply forgets about it?
3253 ;; Alternative (b), on the other hand, works well with a cheap way to speed up
3254 ;; vc-state. Usually, if a file is registered, we can read its locked/
3255 ;; unlocked state and its current owner from its permissions.
3257 ;; This shortcut will fail if someone has manually changed the workfile's
3258 ;; permissions; also if developers are munging the workfile in several
3259 ;; directories, with symlinks to a master (in this latter case, the
3260 ;; permissions shortcut will fail to detect a lock asserted from another
3261 ;; directory).
3263 ;; Note that these cases correspond exactly to the errors which could happen
3264 ;; because of a competing checkin/checkout race in between two instances of
3265 ;; vc-next-action.
3267 ;; For VC's purposes, a workfile/master pair may have the following states:
3269 ;; A. Unregistered. There is a workfile, there is no master.
3271 ;; B. Registered and not locked by anyone.
3273 ;; C. Locked by calling user and unchanged.
3275 ;; D. Locked by the calling user and changed.
3277 ;; E. Locked by someone other than the calling user.
3279 ;; This makes for 25 states and 20 error conditions. Here's the matrix:
3281 ;; VC's idea of state
3282 ;; |
3283 ;; V Actual state RCS action SCCS action Effect
3284 ;; A B C D E
3285 ;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
3286 ;; B 5 . 6 7 8 co -l get -e checkout
3287 ;; C 9 10 . 11 12 co -u unget; get revert
3288 ;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
3289 ;; E 17 18 19 20 . rcs -u -M -l unget -n ; get -g steal lock
3291 ;; All commands take the master file name as a last argument (not shown).
3293 ;; In the discussion below, a "self-race" is a pathological situation in
3294 ;; which VC operations are being attempted simultaneously by two or more
3295 ;; Emacsen running under the same username.
3297 ;; The vc-next-action code has the following windows:
3299 ;; Window P:
3300 ;; Between the check for existence of a master file and the call to
3301 ;; admin/checkin in vc-buffer-admin (apparent state A). This window may
3302 ;; never close if the initial-comment feature is on.
3304 ;; Window Q:
3305 ;; Between the call to vc-workfile-unchanged-p in and the immediately
3306 ;; following revert (apparent state C).
3308 ;; Window R:
3309 ;; Between the call to vc-workfile-unchanged-p in and the following
3310 ;; checkin (apparent state D). This window may never close.
3312 ;; Window S:
3313 ;; Between the unlock and the immediately following checkout during a
3314 ;; revert operation (apparent state C). Included in window Q.
3316 ;; Window T:
3317 ;; Between vc-state and the following checkout (apparent state B).
3319 ;; Window U:
3320 ;; Between vc-state and the following revert (apparent state C).
3321 ;; Includes windows Q and S.
3323 ;; Window V:
3324 ;; Between vc-state and the following checkin (apparent state
3325 ;; D). This window may never be closed if the user fails to complete the
3326 ;; checkin message. Includes window R.
3328 ;; Window W:
3329 ;; Between vc-state and the following steal-lock (apparent
3330 ;; state E). This window may never close if the user fails to complete
3331 ;; the steal-lock message. Includes window X.
3333 ;; Window X:
3334 ;; Between the unlock and the immediately following re-lock during a
3335 ;; steal-lock operation (apparent state E). This window may never close
3336 ;; if the user fails to complete the steal-lock message.
3338 ;; Errors:
3340 ;; Apparent state A ---
3342 ;; 1. File looked unregistered but is actually registered and not locked.
3344 ;; Potential cause: someone else's admin during window P, with
3345 ;; caller's admin happening before their checkout.
3347 ;; RCS: Prior to version 5.6.4, ci fails with message
3348 ;; "no lock set by <user>". From 5.6.4 onwards, VC uses the new
3349 ;; ci -i option and the message is "<file>,v: already exists".
3350 ;; SCCS: admin will fail with error (ad19).
3352 ;; We can let these errors be passed up to the user.
3354 ;; 2. File looked unregistered but is actually locked by caller, unchanged.
3356 ;; Potential cause: self-race during window P.
3358 ;; RCS: Prior to version 5.6.4, reverts the file to the last saved
3359 ;; version and unlocks it. From 5.6.4 onwards, VC uses the new
3360 ;; ci -i option, failing with message "<file>,v: already exists".
3361 ;; SCCS: will fail with error (ad19).
3363 ;; Either of these consequences is acceptable.
3365 ;; 3. File looked unregistered but is actually locked by caller, changed.
3367 ;; Potential cause: self-race during window P.
3369 ;; RCS: Prior to version 5.6.4, VC registers the caller's workfile as
3370 ;; a delta with a null change comment (the -t- switch will be
3371 ;; ignored). From 5.6.4 onwards, VC uses the new ci -i option,
3372 ;; failing with message "<file>,v: already exists".
3373 ;; SCCS: will fail with error (ad19).
3375 ;; 4. File looked unregistered but is locked by someone else.
3377 ;; Potential cause: someone else's admin during window P, with
3378 ;; caller's admin happening *after* their checkout.
3380 ;; RCS: Prior to version 5.6.4, ci fails with a
3381 ;; "no lock set by <user>" message. From 5.6.4 onwards,
3382 ;; VC uses the new ci -i option, failing with message
3383 ;; "<file>,v: already exists".
3384 ;; SCCS: will fail with error (ad19).
3386 ;; We can let these errors be passed up to the user.
3388 ;; Apparent state B ---
3390 ;; 5. File looked registered and not locked, but is actually unregistered.
3392 ;; Potential cause: master file got nuked during window P.
3394 ;; RCS: will fail with "RCS/<file>: No such file or directory"
3395 ;; SCCS: will fail with error ut4.
3397 ;; We can let these errors be passed up to the user.
3399 ;; 6. File looked registered and not locked, but is actually locked by the
3400 ;; calling user and unchanged.
3402 ;; Potential cause: self-race during window T.
3404 ;; RCS: in the same directory as the previous workfile, co -l will fail
3405 ;; with "co error: writable foo exists; checkout aborted". In any other
3406 ;; directory, checkout will succeed.
3407 ;; SCCS: will fail with ge17.
3409 ;; Either of these consequences is acceptable.
3411 ;; 7. File looked registered and not locked, but is actually locked by the
3412 ;; calling user and changed.
3414 ;; As case 6.
3416 ;; 8. File looked registered and not locked, but is actually locked by another
3417 ;; user.
3419 ;; Potential cause: someone else checks it out during window T.
3421 ;; RCS: co error: revision 1.3 already locked by <user>
3422 ;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
3424 ;; We can let these errors be passed up to the user.
3426 ;; Apparent state C ---
3428 ;; 9. File looks locked by calling user and unchanged, but is unregistered.
3430 ;; As case 5.
3432 ;; 10. File looks locked by calling user and unchanged, but is actually not
3433 ;; locked.
3435 ;; Potential cause: a self-race in window U, or by the revert's
3436 ;; landing during window X of some other user's steal-lock or window S
3437 ;; of another user's revert.
3439 ;; RCS: succeeds, refreshing the file from the identical version in
3440 ;; the master.
3441 ;; SCCS: fails with error ut4 (p file nonexistent).
3443 ;; Either of these consequences is acceptable.
3445 ;; 11. File is locked by calling user. It looks unchanged, but is actually
3446 ;; changed.
3448 ;; Potential cause: the file would have to be touched by a self-race
3449 ;; during window Q.
3451 ;; The revert will succeed, removing whatever changes came with
3452 ;; the touch. It is theoretically possible that work could be lost.
3454 ;; 12. File looks like it's locked by the calling user and unchanged, but
3455 ;; it's actually locked by someone else.
3457 ;; Potential cause: a steal-lock in window V.
3459 ;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
3460 ;; SCCS: fails with error un2
3462 ;; We can pass these errors up to the user.
3464 ;; Apparent state D ---
3466 ;; 13. File looks like it's locked by the calling user and changed, but it's
3467 ;; actually unregistered.
3469 ;; Potential cause: master file got nuked during window P.
3471 ;; RCS: Prior to version 5.6.4, checks in the user's version as an
3472 ;; initial delta. From 5.6.4 onwards, VC uses the new ci -j
3473 ;; option, failing with message "no such file or directory".
3474 ;; SCCS: will fail with error ut4.
3476 ;; This case is kind of nasty. Under RCS prior to version 5.6.4,
3477 ;; VC may fail to detect the loss of previous version information.
3479 ;; 14. File looks like it's locked by the calling user and changed, but it's
3480 ;; actually unlocked.
3482 ;; Potential cause: self-race in window V, or the checkin happening
3483 ;; during the window X of someone else's steal-lock or window S of
3484 ;; someone else's revert.
3486 ;; RCS: ci will fail with "no lock set by <user>".
3487 ;; SCCS: delta will fail with error ut4.
3489 ;; 15. File looks like it's locked by the calling user and changed, but it's
3490 ;; actually locked by the calling user and unchanged.
3492 ;; Potential cause: another self-race --- a whole checkin/checkout
3493 ;; sequence by the calling user would have to land in window R.
3495 ;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
3496 ;; RCS: reverts to the file state as of the second user's checkin, leaving
3497 ;; the file unlocked.
3499 ;; It is theoretically possible that work could be lost under RCS.
3501 ;; 16. File looks like it's locked by the calling user and changed, but it's
3502 ;; actually locked by a different user.
3504 ;; RCS: ci error: no lock set by <user>
3505 ;; SCCS: unget will fail with error un2
3507 ;; We can pass these errors up to the user.
3509 ;; Apparent state E ---
3511 ;; 17. File looks like it's locked by some other user, but it's actually
3512 ;; unregistered.
3514 ;; As case 13.
3516 ;; 18. File looks like it's locked by some other user, but it's actually
3517 ;; unlocked.
3519 ;; Potential cause: someone released a lock during window W.
3521 ;; RCS: The calling user will get the lock on the file.
3522 ;; SCCS: unget -n will fail with cm4.
3524 ;; Either of these consequences will be OK.
3526 ;; 19. File looks like it's locked by some other user, but it's actually
3527 ;; locked by the calling user and unchanged.
3529 ;; Potential cause: the other user relinquishing a lock followed by
3530 ;; a self-race, both in window W.
3532 ;; Under both RCS and SCCS, both unlock and lock will succeed, making
3533 ;; the sequence a no-op.
3535 ;; 20. File looks like it's locked by some other user, but it's actually
3536 ;; locked by the calling user and changed.
3538 ;; As case 19.
3540 ;; PROBLEM CASES:
3542 ;; In order of decreasing severity:
3544 ;; Cases 11 and 15 are the only ones that potentially lose work.
3545 ;; They would require a self-race for this to happen.
3547 ;; Case 13 in RCS loses information about previous deltas, retaining
3548 ;; only the information in the current workfile. This can only happen
3549 ;; if the master file gets nuked in window P.
3551 ;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
3552 ;; no change comment in the master. This would require a self-race in
3553 ;; window P or R respectively.
3555 ;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
3557 ;; Unfortunately, it appears to me that no recovery is possible in these
3558 ;; cases. They don't yield error messages, so there's no way to tell that
3559 ;; a race condition has occurred.
3561 ;; All other cases don't change either the workfile or the master, and
3562 ;; trigger command errors which the user will see.
3564 ;; Thus, there is no explicit recovery code.
3566 ;;; vc.el ends here