Merge from emacs--devo--0
[bpt/emacs.git] / lisp / vc.el
1 ;;; vc.el --- drive a version-control system from within Emacs
2
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: FSF (see below for full credits)
7 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
8 ;; Keywords: tools
9
10 ;; $Id$
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 3, or (at your option)
17 ;; any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
27 ;; Boston, MA 02110-1301, USA.
28
29 ;;; Credits:
30
31 ;; VC was initially designed and implemented by Eric S. Raymond
32 ;; <esr@thyrsus.com> in 1992. Over the years, many other people have
33 ;; contributed substantial amounts of work to VC. These include:
34 ;;
35 ;; Per Cederqvist <ceder@lysator.liu.se>
36 ;; Paul Eggert <eggert@twinsun.com>
37 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
38 ;; Martin Lorentzson <martinl@gnu.org>
39 ;; Dave Love <fx@gnu.org>
40 ;; Stefan Monnier <monnier@cs.yale.edu>
41 ;; J.D. Smith <jdsmith@alum.mit.edu>
42 ;; Andre Spiegel <spiegel@gnu.org>
43 ;; Richard Stallman <rms@gnu.org>
44 ;; Thien-Thi Nguyen <ttn@gnu.org>
45 ;;
46 ;; In July 2007 ESR returned and redesigned the mode to cope better
47 ;; with modern version-control systems that do commits by fileset
48 ;; rather than per individual file.
49 ;;
50 ;; Features in the new version:
51 ;; * Key commands (vc-next-action = C-x v v, vc-print-log = C-x v l, vc-revert
52 ;; = C-x v u, vc-rollback = C-x v c, vc-diff = C-x v =, vc-update = C-x v +)
53 ;; now operate on filesets rather than individual files.
54 ;; * The fileset for a command is either (a) all marked files in VC-dired
55 ;; mode, (b) the currently visited file if it's under version control,
56 ;; or (c) the current directory if the visited buffer is not under
57 ;; version control and a wildcarding-enable flag has been set.
58 ;;
59 ;; If you maintain a client of the mode or customize it in your .emacs,
60 ;; note that some backend functions which formerly took single file arguments
61 ;; now take a list of files. These include: register, checkin, print-log,
62 ;; rollback, and diff.
63
64 ;;; Commentary:
65
66 ;; This mode is fully documented in the Emacs user's manual.
67 ;;
68 ;; Supported version-control systems presently include CVS, RCS, GNU
69 ;; Arch, Subversion, Bzr, Git, Mercurial, Meta-CVS, Monotone and SCCS
70 ;; (or its free replacement, CSSC).
71 ;;
72 ;; Some features will not work with old RCS versions. Where
73 ;; appropriate, VC finds out which version you have, and allows or
74 ;; disallows those features (stealing locks, for example, works only
75 ;; from 5.6.2 onwards).
76 ;; Even initial checkins will fail if your RCS version is so old that ci
77 ;; doesn't understand -t-; this has been known to happen to people running
78 ;; NExTSTEP 3.0.
79 ;;
80 ;; You can support the RCS -x option by customizing vc-rcs-master-templates.
81 ;;
82 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff
83 ;; to be installed somewhere on Emacs's path for executables.
84 ;;
85 ;; If your site uses the ChangeLog convention supported by Emacs, the
86 ;; function log-edit-comment-to-change-log could prove a useful checkin hook,
87 ;; although you might prefer to use C-c C-a (i.e. log-edit-insert-changelog)
88 ;; from the commit buffer instead or to set `log-edit-setup-invert'.
89 ;;
90 ;; The vc code maintains some internal state in order to reduce expensive
91 ;; version-control operations to a minimum. Some names are only computed
92 ;; once. If you perform version control operations with the backend while
93 ;; vc's back is turned, or move/rename master files while vc is running,
94 ;; vc may get seriously confused. Don't do these things!
95 ;;
96 ;; Developer's notes on some concurrency issues are included at the end of
97 ;; the file.
98 ;;
99 ;; ADDING SUPPORT FOR OTHER BACKENDS
100 ;;
101 ;; VC can use arbitrary version control systems as a backend. To add
102 ;; support for a new backend named SYS, write a library vc-sys.el that
103 ;; contains functions of the form `vc-sys-...' (note that SYS is in lower
104 ;; case for the function and library names). VC will use that library if
105 ;; you put the symbol SYS somewhere into the list of
106 ;; `vc-handled-backends'. Then, for example, if `vc-sys-registered'
107 ;; returns non-nil for a file, all SYS-specific versions of VC commands
108 ;; will be available for that file.
109 ;;
110 ;; VC keeps some per-file information in the form of properties (see
111 ;; vc-file-set/getprop in vc-hooks.el). The backend-specific functions
112 ;; do not generally need to be aware of these properties. For example,
113 ;; `vc-sys-working-revision' should compute the working revision and
114 ;; return it; it should not look it up in the property, and it needn't
115 ;; store it there either. However, if a backend-specific function does
116 ;; store a value in a property, that value takes precedence over any
117 ;; value that the generic code might want to set (check for uses of
118 ;; the macro `with-vc-properties' in vc.el).
119 ;;
120 ;; In the list of functions below, each identifier needs to be prepended
121 ;; with `vc-sys-'. Some of the functions are mandatory (marked with a
122 ;; `*'), others are optional (`-').
123 ;;
124 ;; BACKEND PROPERTIES
125 ;;
126 ;; * revision-granularity
127 ;;
128 ;; Takes no arguments. Returns either 'file or 'repository. Backends
129 ;; that return 'file have per-file revision numbering; backends
130 ;; that return 'repository have per-repository revision numbering,
131 ;; so a revision level implicitly identifies a changeset
132 ;;
133 ;; STATE-QUERYING FUNCTIONS
134 ;;
135 ;; * registered (file)
136 ;;
137 ;; Return non-nil if FILE is registered in this backend. Both this
138 ;; function as well as `state' should be careful to fail gracefully
139 ;; in the event that the backend executable is absent. It is
140 ;; preferable that this function's body is autoloaded, that way only
141 ;; calling vc-registered does not cause the backend to be loaded
142 ;; (all the vc-FOO-registered functions are called to try to find
143 ;; the controlling backend for FILE.
144 ;;
145 ;; * state (file)
146 ;;
147 ;; Return the current version control state of FILE. For a list of
148 ;; possible values, see `vc-state'. This function should do a full and
149 ;; reliable state computation; it is usually called immediately after
150 ;; C-x v v. If you want to use a faster heuristic when visiting a
151 ;; file, put that into `state-heuristic' below.
152 ;;
153 ;; - state-heuristic (file)
154 ;;
155 ;; If provided, this function is used to estimate the version control
156 ;; state of FILE at visiting time. It should be considerably faster
157 ;; than the implementation of `state'. For a list of possible values,
158 ;; see the doc string of `vc-state'.
159 ;;
160 ;; - dir-state (dir)
161 ;;
162 ;; If provided, this function is used to find the version control state
163 ;; of all files in DIR in a fast way. The function should not return
164 ;; anything, but rather store the files' states into the corresponding
165 ;; `vc-state' properties.
166 ;;
167 ;; * working-revision (file)
168 ;;
169 ;; Return the working revision of FILE. This is the revision fetched
170 ;; by the last checkout or upate, not necessarily the same thing as the
171 ;; head or tip revision. Should return "0" for a file added but not yet
172 ;; committed.
173 ;;
174 ;; - latest-on-branch-p (file)
175 ;;
176 ;; Return non-nil if the working revision of FILE is the latest revision
177 ;; on its branch (many VCSes call this the 'tip' or 'head' revision).
178 ;; The default implementation always returns t, which means that
179 ;; working with non-current revisions is not supported by default.
180 ;;
181 ;; * checkout-model (file)
182 ;;
183 ;; Indicate whether FILE needs to be "checked out" before it can be
184 ;; edited. See `vc-checkout-model' for a list of possible values.
185 ;;
186 ;; - workfile-unchanged-p (file)
187 ;;
188 ;; Return non-nil if FILE is unchanged from the working revision.
189 ;; This function should do a brief comparison of FILE's contents
190 ;; with those of the repository master of the working revision. If
191 ;; the backend does not have such a brief-comparison feature, the
192 ;; default implementation of this function can be used, which
193 ;; delegates to a full vc-BACKEND-diff. (Note that vc-BACKEND-diff
194 ;; must not run asynchronously in this case, see variable
195 ;; `vc-disable-async-diff'.)
196 ;;
197 ;; - mode-line-string (file)
198 ;;
199 ;; If provided, this function should return the VC-specific mode
200 ;; line string for FILE. The returned string should have a
201 ;; `help-echo' property which is the text to be displayed as a
202 ;; tooltip when the mouse hovers over the VC entry on the mode-line.
203 ;; The default implementation deals well with all states that
204 ;; `vc-state' can return.
205 ;;
206 ;; - dired-state-info (file)
207 ;;
208 ;; Translate the `vc-state' property of FILE into a string that can be
209 ;; used in a vc-dired buffer. The default implementation deals well
210 ;; with all states that `vc-state' can return.
211 ;;
212 ;; STATE-CHANGING FUNCTIONS
213 ;;
214 ;; * create-repo (backend)
215 ;;
216 ;; Create an empty repository in the current directory and initialize
217 ;; it so VC mode can add files to it. For file-oriented systems, this
218 ;; need do no more than create a subdirectory with the right name.
219 ;;
220 ;; * register (files &optional rev comment)
221 ;;
222 ;; Register FILES in this backend. Optionally, an initial revision REV
223 ;; and an initial description of the file, COMMENT, may be specified,
224 ;; but it is not guaranteed that the backend will do anything with this.
225 ;; The implementation should pass the value of vc-register-switches
226 ;; to the backend command. (Note: in older versions of VC, this
227 ;; command took a single file argument and not a list.)
228 ;;
229 ;; - init-revision (file)
230 ;;
231 ;; The initial revision to use when registering FILE if one is not
232 ;; specified by the user. If not provided, the variable
233 ;; vc-default-init-revision is used instead.
234 ;;
235 ;; - responsible-p (file)
236 ;;
237 ;; Return non-nil if this backend considers itself "responsible" for
238 ;; FILE, which can also be a directory. This function is used to find
239 ;; out what backend to use for registration of new files and for things
240 ;; like change log generation. The default implementation always
241 ;; returns nil.
242 ;;
243 ;; - could-register (file)
244 ;;
245 ;; Return non-nil if FILE could be registered under this backend. The
246 ;; default implementation always returns t.
247 ;;
248 ;; - receive-file (file rev)
249 ;;
250 ;; Let this backend "receive" a file that is already registered under
251 ;; another backend. The default implementation simply calls `register'
252 ;; for FILE, but it can be overridden to do something more specific,
253 ;; e.g. keep revision numbers consistent or choose editing modes for
254 ;; FILE that resemble those of the other backend.
255 ;;
256 ;; - unregister (file)
257 ;;
258 ;; Unregister FILE from this backend. This is only needed if this
259 ;; backend may be used as a "more local" backend for temporary editing.
260 ;;
261 ;; * checkin (files rev comment)
262 ;;
263 ;; Commit changes in FILES to this backend. If REV is non-nil, that
264 ;; should become the new revision number (not all backends do
265 ;; anything with it). COMMENT is used as a check-in comment. The
266 ;; implementation should pass the value of vc-checkin-switches to
267 ;; the backend command. (Note: in older versions of VC, this
268 ;; command took a single file argument and not a list.)
269 ;;
270 ;; * find-revision (file rev buffer)
271 ;;
272 ;; Fetch revision REV of file FILE and put it into BUFFER.
273 ;; If REV is the empty string, fetch the head of the trunk.
274 ;; The implementation should pass the value of vc-checkout-switches
275 ;; to the backend command.
276 ;;
277 ;; * checkout (file &optional editable rev)
278 ;;
279 ;; Check out revision REV of FILE into the working area. If EDITABLE
280 ;; is non-nil, FILE should be writable by the user and if locking is
281 ;; used for FILE, a lock should also be set. If REV is non-nil, that
282 ;; is the revision to check out (default is the working revision).
283 ;; If REV is t, that means to check out the head of the current branch;
284 ;; if it is the empty string, check out the head of the trunk.
285 ;; The implementation should pass the value of vc-checkout-switches
286 ;; to the backend command.
287 ;;
288 ;; * revert (file &optional contents-done)
289 ;;
290 ;; Revert FILE back to the working revision. If optional
291 ;; arg CONTENTS-DONE is non-nil, then the contents of FILE have
292 ;; already been reverted from a version backup, and this function
293 ;; only needs to update the status of FILE within the backend.
294 ;;
295 ;; - rollback (files)
296 ;;
297 ;; Remove the tip revision of each of FILES from the repository. If
298 ;; this function is not provided, trying to cancel a revision is
299 ;; caught as an error. (Most backends don't provide it.) (Also
300 ;; note that older versions of this backend command were called
301 ;; 'cancel-version' and took a single file arg, not a list of
302 ;; files.)
303 ;;
304 ;; - merge (file rev1 rev2)
305 ;;
306 ;; Merge the changes between REV1 and REV2 into the current working file.
307 ;;
308 ;; - merge-news (file)
309 ;;
310 ;; Merge recent changes from the current branch into FILE.
311 ;;
312 ;; - steal-lock (file &optional revision)
313 ;;
314 ;; Steal any lock on the working revision of FILE, or on REVISION if
315 ;; that is provided. This function is only needed if locking is
316 ;; used for files under this backend, and if files can indeed be
317 ;; locked by other users.
318 ;;
319 ;; HISTORY FUNCTIONS
320 ;;
321 ;; * print-log (files &optional buffer)
322 ;;
323 ;; Insert the revision log for FILES into BUFFER, or the *vc* buffer
324 ;; if BUFFER is nil. (Note: older versions of this function expected
325 ;; only a single file argument.)
326 ;;
327 ;; - log-view-mode ()
328 ;;
329 ;; Mode to use for the output of print-log. This defaults to
330 ;; `log-view-mode' and is expected to be changed (if at all) to a derived
331 ;; mode of `log-view-mode'.
332 ;;
333 ;; - show-log-entry (revision)
334 ;;
335 ;; If provided, search the log entry for REVISION in the current buffer,
336 ;; and make sure it is displayed in the buffer's window. The default
337 ;; implementation of this function works for RCS-style logs.
338 ;;
339 ;; - wash-log (file)
340 ;;
341 ;; Remove all non-comment information from the output of print-log.
342 ;;
343 ;; - logentry-check ()
344 ;;
345 ;; If defined, this function is run to find out whether the user
346 ;; entered a valid log entry for check-in. The log entry is in the
347 ;; current buffer, and if it is not a valid one, the function should
348 ;; throw an error.
349 ;;
350 ;; - comment-history (file)
351 ;;
352 ;; Return a string containing all log entries that were made for FILE.
353 ;; This is used for transferring a file from one backend to another,
354 ;; retaining comment information. The default implementation of this
355 ;; function does this by calling print-log and then wash-log, and
356 ;; returning the resulting buffer contents as a string.
357 ;;
358 ;; - update-changelog (files)
359 ;;
360 ;; Using recent log entries, create ChangeLog entries for FILES, or for
361 ;; all files at or below the default-directory if FILES is nil. The
362 ;; default implementation runs rcs2log, which handles RCS- and
363 ;; CVS-style logs.
364 ;;
365 ;; * diff (files &optional rev1 rev2 buffer)
366 ;;
367 ;; Insert the diff for FILE into BUFFER, or the *vc-diff* buffer if
368 ;; BUFFER is nil. If REV1 and REV2 are non-nil, report differences
369 ;; from REV1 to REV2. If REV1 is nil, use the working revision (as
370 ;; found in the repository) as the older revision; if REV2 is nil,
371 ;; use the current working-copy contents as the newer revision. This
372 ;; function should pass the value of (vc-switches BACKEND 'diff) to
373 ;; the backend command. It should return a status of either 0 (no
374 ;; differences found), or 1 (either non-empty diff or the diff is
375 ;; run asynchronously).
376 ;;
377 ;; - revision-completion-table (files)
378 ;;
379 ;; Return a completion table for existing revisions of FILES.
380 ;; The default is to not use any completion table.
381 ;;
382 ;; - annotate-command (file buf &optional rev)
383 ;;
384 ;; If this function is provided, it should produce an annotated display
385 ;; of FILE in BUF, relative to revision REV. Annotation means each line
386 ;; of FILE displayed is prefixed with version information associated with
387 ;; its addition (deleted lines leave no history) and that the text of the
388 ;; file is fontified according to age.
389 ;;
390 ;; - annotate-time ()
391 ;;
392 ;; Only required if `annotate-command' is defined for the backend.
393 ;; Return the time of the next line of annotation at or after point,
394 ;; as a floating point fractional number of days. The helper
395 ;; function `vc-annotate-convert-time' may be useful for converting
396 ;; multi-part times as returned by `current-time' and `encode-time'
397 ;; to this format. Return nil if no more lines of annotation appear
398 ;; in the buffer. You can safely assume that point is placed at the
399 ;; beginning of each line, starting at `point-min'. The buffer that
400 ;; point is placed in is the Annotate output, as defined by the
401 ;; relevant backend. This function also affects how much of the line
402 ;; is fontified; where it leaves point is where fontification begins.
403 ;;
404 ;; - annotate-current-time ()
405 ;;
406 ;; Only required if `annotate-command' is defined for the backend,
407 ;; AND you'd like the current time considered to be anything besides
408 ;; (vc-annotate-convert-time (current-time)) -- i.e. the current
409 ;; time with hours, minutes, and seconds included. Probably safe to
410 ;; ignore. Return the current-time, in units of fractional days.
411 ;;
412 ;; - annotate-extract-revision-at-line ()
413 ;;
414 ;; Only required if `annotate-command' is defined for the backend.
415 ;; Invoked from a buffer in vc-annotate-mode, return the revision
416 ;; corresponding to the current line, or nil if there is no revision
417 ;; corresponding to the current line.
418 ;;
419 ;; SNAPSHOT SYSTEM
420 ;;
421 ;; - create-snapshot (dir name branchp)
422 ;;
423 ;; Take a snapshot of the current state of files under DIR and name it
424 ;; NAME. This should make sure that files are up-to-date before
425 ;; proceeding with the action. DIR can also be a file and if BRANCHP
426 ;; is specified, NAME should be created as a branch and DIR should be
427 ;; checked out under this new branch. The default implementation does
428 ;; not support branches but does a sanity check, a tree traversal and
429 ;; for each file calls `assign-name'.
430 ;;
431 ;; - assign-name (file name)
432 ;;
433 ;; Give name NAME to the working revision of FILE, assuming it is
434 ;; up-to-date. Only used by the default version of `create-snapshot'.
435 ;;
436 ;; - retrieve-snapshot (dir name update)
437 ;;
438 ;; Retrieve a named snapshot of all registered files at or below DIR.
439 ;; If UPDATE is non-nil, then update buffers of any files in the
440 ;; snapshot that are currently visited. The default implementation
441 ;; does a sanity check whether there aren't any uncommitted changes at
442 ;; or below DIR, and then performs a tree walk, using the `checkout'
443 ;; function to retrieve the corresponding revisions.
444 ;;
445 ;; MISCELLANEOUS
446 ;;
447 ;; - make-version-backups-p (file)
448 ;;
449 ;; Return non-nil if unmodified repository revisions of FILE should be
450 ;; backed up locally. If this is done, VC can perform `diff' and
451 ;; `revert' operations itself, without calling the backend system. The
452 ;; default implementation always returns nil.
453 ;;
454 ;; - repository-hostname (dirname)
455 ;;
456 ;; Return the hostname that the backend will have to contact
457 ;; in order to operate on a file in DIRNAME. If the return value
458 ;; is nil, it means that the repository is local.
459 ;; This function is used in `vc-stay-local-p' which backends can use
460 ;; for their convenience.
461 ;;
462 ;; - previous-revision (file rev)
463 ;;
464 ;; Return the revision number that precedes REV for FILE, or nil if no such
465 ;; revision exists.
466 ;;
467 ;; - next-revision (file rev)
468 ;;
469 ;; Return the revision number that follows REV for FILE, or nil if no such
470 ;; revision exists.
471 ;;
472 ;; - check-headers ()
473 ;;
474 ;; Return non-nil if the current buffer contains any version headers.
475 ;;
476 ;; - clear-headers ()
477 ;;
478 ;; In the current buffer, reset all version headers to their unexpanded
479 ;; form. This function should be provided if the state-querying code
480 ;; for this backend uses the version headers to determine the state of
481 ;; a file. This function will then be called whenever VC changes the
482 ;; version control state in such a way that the headers would give
483 ;; wrong information.
484 ;;
485 ;; - delete-file (file)
486 ;;
487 ;; Delete FILE and mark it as deleted in the repository. If this
488 ;; function is not provided, the command `vc-delete-file' will
489 ;; signal an error.
490 ;;
491 ;; - rename-file (old new)
492 ;;
493 ;; Rename file OLD to NEW, both in the working area and in the
494 ;; repository. If this function is not provided, the renaming
495 ;; will be done by (vc-delete-file old) and (vc-register new).
496 ;;
497 ;; - find-file-hook ()
498 ;;
499 ;; Operation called in current buffer when opening a file. This can
500 ;; be used by the backend to setup some local variables it might need.
501 ;;
502 ;; - find-file-not-found-hook ()
503 ;;
504 ;; Operation called in current buffer when opening a non-existing file.
505 ;; By default, this asks the user if she wants to check out the file.
506 ;;
507 ;; - extra-menu ()
508 ;;
509 ;; Return a menu keymap, the items in the keymap will appear at the
510 ;; end of the Version Control menu. The goal is to allow backends
511 ;; to specify extra menu items that appear in the VC menu. This way
512 ;; you can provide menu entries for functionality that is specific
513 ;; to your backend and which does not map to any of the VC generic
514 ;; concepts.
515
516 ;;; Code:
517
518 (require 'vc-hooks)
519 (require 'ring)
520 (eval-when-compile
521 (require 'cl)
522 (require 'compile)
523 (require 'dired) ; for dired-map-over-marks macro
524 (require 'dired-aux)) ; for dired-kill-{line,tree}
525
526 (if (not (assoc 'vc-parent-buffer minor-mode-alist))
527 (setq minor-mode-alist
528 (cons '(vc-parent-buffer vc-parent-buffer-name)
529 minor-mode-alist)))
530
531 ;; General customization
532
533 (defgroup vc nil
534 "Version-control system in Emacs."
535 :group 'tools)
536
537 (defcustom vc-suppress-confirm nil
538 "If non-nil, treat user as expert; suppress yes-no prompts on some things."
539 :type 'boolean
540 :group 'vc)
541
542 (defcustom vc-delete-logbuf-window t
543 "If non-nil, delete the *VC-log* buffer and window after each logical action.
544 If nil, bury that buffer instead.
545 This is most useful if you have multiple windows on a frame and would like to
546 preserve the setting."
547 :type 'boolean
548 :group 'vc)
549
550 (defcustom vc-initial-comment nil
551 "If non-nil, prompt for initial comment when a file is registered."
552 :type 'boolean
553 :group 'vc)
554
555 (defcustom vc-default-init-revision "1.1"
556 "A string used as the default revision number when a new file is registered.
557 This can be overridden by giving a prefix argument to \\[vc-register]. This
558 can also be overridden by a particular VC backend."
559 :type 'string
560 :group 'vc
561 :version "20.3")
562
563 (defcustom vc-command-messages nil
564 "If non-nil, display run messages from back-end commands."
565 :type 'boolean
566 :group 'vc)
567
568 (defcustom vc-checkin-switches nil
569 "A string or list of strings specifying extra switches for checkin.
570 These are passed to the checkin program by \\[vc-checkin]."
571 :type '(choice (const :tag "None" nil)
572 (string :tag "Argument String")
573 (repeat :tag "Argument List"
574 :value ("")
575 string))
576 :group 'vc)
577
578 (defcustom vc-checkout-switches nil
579 "A string or list of strings specifying extra switches for checkout.
580 These are passed to the checkout program by \\[vc-checkout]."
581 :type '(choice (const :tag "None" nil)
582 (string :tag "Argument String")
583 (repeat :tag "Argument List"
584 :value ("")
585 string))
586 :group 'vc)
587
588 (defcustom vc-register-switches nil
589 "A string or list of strings; extra switches for registering a file.
590 These are passed to the checkin program by \\[vc-register]."
591 :type '(choice (const :tag "None" nil)
592 (string :tag "Argument String")
593 (repeat :tag "Argument List"
594 :value ("")
595 string))
596 :group 'vc)
597
598 (defcustom vc-dired-listing-switches "-al"
599 "Switches passed to `ls' for vc-dired. MUST contain the `l' option."
600 :type 'string
601 :group 'vc
602 :version "21.1")
603
604 (defcustom vc-dired-recurse t
605 "If non-nil, show directory trees recursively in VC Dired."
606 :type 'boolean
607 :group 'vc
608 :version "20.3")
609
610 (defcustom vc-dired-terse-display t
611 "If non-nil, show only locked or locally modified files in VC Dired."
612 :type 'boolean
613 :group 'vc
614 :version "20.3")
615
616 (defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS" ".svn"
617 ".git" ".hg" ".bzr" "{arch}")
618 "List of directory names to be ignored when walking directory trees."
619 :type '(repeat string)
620 :group 'vc)
621
622 (defcustom vc-diff-switches nil
623 "A string or list of strings specifying switches for diff under VC.
624 When running diff under a given BACKEND, VC concatenates the values of
625 `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to
626 get the switches for that command. Thus, `vc-diff-switches' should
627 contain switches that are specific to version control, but not
628 specific to any particular backend."
629 :type '(choice (const :tag "None" nil)
630 (string :tag "Argument String")
631 (repeat :tag "Argument List"
632 :value ("")
633 string))
634 :group 'vc
635 :version "21.1")
636
637 (defcustom vc-diff-knows-L nil
638 "*Indicates whether diff understands the -L option.
639 The value is either `yes', `no', or nil. If it is nil, VC tries
640 to use -L and sets this variable to remember whether it worked."
641 :type '(choice (const :tag "Work out" nil) (const yes) (const no))
642 :group 'vc)
643
644 (defcustom vc-allow-async-revert nil
645 "Specifies whether the diff during \\[vc-revert] may be asynchronous.
646 Enabling this option means that you can confirm a revert operation even
647 if the local changes in the file have not been found and displayed yet."
648 :type '(choice (const :tag "No" nil)
649 (const :tag "Yes" t))
650 :group 'vc
651 :version "22.1")
652
653 ;;;###autoload
654 (defcustom vc-checkout-hook nil
655 "Normal hook (list of functions) run after checking out a file.
656 See `run-hooks'."
657 :type 'hook
658 :group 'vc
659 :version "21.1")
660
661 (defcustom vc-annotate-display-mode 'fullscale
662 "Which mode to color the output of \\[vc-annotate] with by default."
663 :type '(choice (const :tag "By Color Map Range" nil)
664 (const :tag "Scale to Oldest" scale)
665 (const :tag "Scale Oldest->Newest" fullscale)
666 (number :tag "Specify Fractional Number of Days"
667 :value "20.5"))
668 :group 'vc)
669
670 ;;;###autoload
671 (defcustom vc-checkin-hook nil
672 "Normal hook (list of functions) run after commit or file checkin.
673 See also `log-edit-done-hook'."
674 :type 'hook
675 :options '(log-edit-comment-to-change-log)
676 :group 'vc)
677
678 ;;;###autoload
679 (defcustom vc-before-checkin-hook nil
680 "Normal hook (list of functions) run before a commit or a file checkin.
681 See `run-hooks'."
682 :type 'hook
683 :group 'vc)
684
685 (defcustom vc-logentry-check-hook nil
686 "Normal hook run by `vc-backend-logentry-check'.
687 Use this to impose your own rules on the entry in addition to any the
688 version control backend imposes itself."
689 :type 'hook
690 :group 'vc)
691
692 ;; Annotate customization
693 (defcustom vc-annotate-color-map
694 (if (and (tty-display-color-p) (<= (display-color-cells) 8))
695 ;; A custom sorted TTY colormap
696 (let* ((colors
697 (sort
698 (delq nil
699 (mapcar (lambda (x)
700 (if (not (or
701 (string-equal (car x) "white")
702 (string-equal (car x) "black") ))
703 (car x)))
704 (tty-color-alist)))
705 (lambda (a b)
706 (cond
707 ((or (string-equal a "red") (string-equal b "blue")) t)
708 ((or (string-equal b "red") (string-equal a "blue")) nil)
709 ((string-equal a "yellow") t)
710 ((string-equal b "yellow") nil)
711 ((string-equal a "cyan") t)
712 ((string-equal b "cyan") nil)
713 ((string-equal a "green") t)
714 ((string-equal b "green") nil)
715 ((string-equal a "magenta") t)
716 ((string-equal b "magenta") nil)
717 (t (string< a b))))))
718 (date 20.)
719 (delta (/ (- 360. date) (1- (length colors)))))
720 (mapcar (lambda (x)
721 (prog1
722 (cons date x)
723 (setq date (+ date delta)))) colors))
724 ;; Normal colormap: hue stepped from 0-240deg, value=1., saturation=0.75
725 '(( 20. . "#FF3F3F")
726 ( 40. . "#FF6C3F")
727 ( 60. . "#FF993F")
728 ( 80. . "#FFC63F")
729 (100. . "#FFF33F")
730 (120. . "#DDFF3F")
731 (140. . "#B0FF3F")
732 (160. . "#83FF3F")
733 (180. . "#56FF3F")
734 (200. . "#3FFF56")
735 (220. . "#3FFF83")
736 (240. . "#3FFFB0")
737 (260. . "#3FFFDD")
738 (280. . "#3FF3FF")
739 (300. . "#3FC6FF")
740 (320. . "#3F99FF")
741 (340. . "#3F6CFF")
742 (360. . "#3F3FFF")))
743 "Association list of age versus color, for \\[vc-annotate].
744 Ages are given in units of fractional days. Default is eighteen
745 steps using a twenty day increment, from red to blue. For TTY
746 displays with 8 or fewer colors, the default is red to blue with
747 all other colors between (excluding black and white)."
748 :type 'alist
749 :group 'vc)
750
751 (defcustom vc-annotate-very-old-color "#3F3FFF"
752 "Color for lines older than the current color range in \\[vc-annotate]]."
753 :type 'string
754 :group 'vc)
755
756 (defcustom vc-annotate-background "black"
757 "Background color for \\[vc-annotate].
758 Default color is used if nil."
759 :type 'string
760 :group 'vc)
761
762 (defcustom vc-annotate-menu-elements '(2 0.5 0.1 0.01)
763 "Menu elements for the mode-specific menu of VC-Annotate mode.
764 List of factors, used to expand/compress the time scale. See `vc-annotate'."
765 :type '(repeat number)
766 :group 'vc)
767
768 (defvar vc-annotate-mode-map
769 (let ((m (make-sparse-keymap)))
770 (define-key m "A" 'vc-annotate-revision-previous-to-line)
771 (define-key m "D" 'vc-annotate-show-diff-revision-at-line)
772 (define-key m "J" 'vc-annotate-revision-at-line)
773 (define-key m "L" 'vc-annotate-show-log-revision-at-line)
774 (define-key m "N" 'vc-annotate-next-revision)
775 (define-key m "P" 'vc-annotate-prev-revision)
776 (define-key m "W" 'vc-annotate-working-revision)
777 m)
778 "Local keymap used for VC-Annotate mode.")
779
780 ;; Header-insertion hair
781
782 (defcustom vc-static-header-alist
783 '(("\\.c\\'" .
784 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
785 "*Associate static header string templates with file types.
786 A \%s in the template is replaced with the first string associated with
787 the file's version control type in `vc-header-alist'."
788 :type '(repeat (cons :format "%v"
789 (regexp :tag "File Type")
790 (string :tag "Header String")))
791 :group 'vc)
792
793 (defcustom vc-comment-alist
794 '((nroff-mode ".\\\"" ""))
795 "*Special comment delimiters for generating VC headers.
796 Add an entry in this list if you need to override the normal `comment-start'
797 and `comment-end' variables. This will only be necessary if the mode language
798 is sensitive to blank lines."
799 :type '(repeat (list :format "%v"
800 (symbol :tag "Mode")
801 (string :tag "Comment Start")
802 (string :tag "Comment End")))
803 :group 'vc)
804
805 (defcustom vc-checkout-carefully (= (user-uid) 0)
806 "*Non-nil means be extra-careful in checkout.
807 Verify that the file really is not locked
808 and that its contents match what the master file says."
809 :type 'boolean
810 :group 'vc)
811 (make-obsolete-variable 'vc-checkout-carefully
812 "the corresponding checks are always done now."
813 "21.1")
814
815 \f
816 ;; Variables the user doesn't need to know about.
817 (defvar vc-log-operation nil)
818 (defvar vc-log-after-operation-hook nil)
819
820 ;; In a log entry buffer, this is a local variable
821 ;; that points to the buffer for which it was made
822 ;; (either a file, or a VC dired buffer).
823 (defvar vc-parent-buffer nil)
824 (put 'vc-parent-buffer 'permanent-local t)
825 (defvar vc-parent-buffer-name nil)
826 (put 'vc-parent-buffer-name 'permanent-local t)
827
828 (defvar vc-disable-async-diff nil
829 "VC sets this to t locally to disable some async diff operations.
830 Backends that offer asynchronous diffs should respect this variable
831 in their implementation of vc-BACKEND-diff.")
832
833 (defvar vc-log-fileset)
834 (defvar vc-log-revision)
835
836 (defvar vc-dired-mode nil)
837 (make-variable-buffer-local 'vc-dired-mode)
838
839 ;; File property caching
840
841 (defun vc-clear-context ()
842 "Clear all cached file properties."
843 (interactive)
844 (fillarray vc-file-prop-obarray 0))
845
846 (defmacro with-vc-properties (files form settings)
847 "Execute FORM, then maybe set per-file properties for FILES.
848 SETTINGS is an association list of property/value pairs. After
849 executing FORM, set those properties from SETTINGS that have not yet
850 been updated to their corresponding values."
851 (declare (debug t))
852 `(let ((vc-touched-properties (list t)))
853 ,form
854 (dolist (file ,files)
855 (dolist (setting ,settings)
856 (let ((property (car setting)))
857 (unless (memq property vc-touched-properties)
858 (put (intern file vc-file-prop-obarray)
859 property (cdr setting))))))))
860
861 ;; Two macros for elisp programming
862
863 ;;;###autoload
864 (defmacro with-vc-file (file comment &rest body)
865 "Check out a writable copy of FILE if necessary, then execute BODY.
866 Check in FILE with COMMENT (a string) after BODY has been executed.
867 FILE is passed through `expand-file-name'; BODY executed within
868 `save-excursion'. If FILE is not under version control, or you are
869 using a locking version-control system and the file is locked by
870 somebody else, signal error."
871 (declare (debug t) (indent 2))
872 (let ((filevar (make-symbol "file")))
873 `(let ((,filevar (expand-file-name ,file)))
874 (or (vc-backend ,filevar)
875 (error "File not under version control: `%s'" file))
876 (unless (vc-editable-p ,filevar)
877 (let ((state (vc-state ,filevar)))
878 (if (stringp state)
879 (error "`%s' is locking `%s'" state ,filevar)
880 (vc-checkout ,filevar t))))
881 (save-excursion
882 ,@body)
883 (vc-checkin (list ,filevar) nil ,comment))))
884
885 ;;;###autoload
886 (defmacro edit-vc-file (file comment &rest body)
887 "Edit FILE under version control, executing body.
888 Checkin with COMMENT after executing BODY.
889 This macro uses `with-vc-file', passing args to it.
890 However, before executing BODY, find FILE, and after BODY, save buffer."
891 (declare (debug t) (indent 2))
892 (let ((filevar (make-symbol "file")))
893 `(let ((,filevar (expand-file-name ,file)))
894 (with-vc-file
895 ,filevar ,comment
896 (set-buffer (find-file-noselect ,filevar))
897 ,@body
898 (save-buffer)))))
899
900 ;; Common command execution logic to be used by backends
901
902 (defun vc-process-filter (p s)
903 "An alternative output filter for async process P.
904 One difference with the default filter is that this inserts S after markers.
905 Another is that undo information is not kept."
906 (with-current-buffer (process-buffer p)
907 (save-excursion
908 (let ((buffer-undo-list t)
909 (inhibit-read-only t))
910 (goto-char (process-mark p))
911 (insert s)
912 (set-marker (process-mark p) (point))))))
913
914 (defun vc-setup-buffer (&optional buf)
915 "Prepare BUF for executing a VC command and make it current.
916 BUF defaults to \"*vc*\", can be a string and will be created if necessary."
917 (unless buf (setq buf "*vc*"))
918 (let ((camefrom (current-buffer))
919 (olddir default-directory))
920 (set-buffer (get-buffer-create buf))
921 (kill-all-local-variables)
922 (set (make-local-variable 'vc-parent-buffer) camefrom)
923 (set (make-local-variable 'vc-parent-buffer-name)
924 (concat " from " (buffer-name camefrom)))
925 (setq default-directory olddir)
926 (let ((buffer-undo-list t)
927 (inhibit-read-only t))
928 (erase-buffer))))
929
930 (defvar vc-sentinel-movepoint) ;Dynamically scoped.
931
932 (defun vc-process-sentinel (p s)
933 (let ((previous (process-get p 'vc-previous-sentinel)))
934 (if previous (funcall previous p s))
935 (with-current-buffer (process-buffer p)
936 (let (vc-sentinel-movepoint)
937 ;; Normally, we want async code such as sentinels to not move point.
938 (save-excursion
939 (goto-char (process-mark p))
940 (let ((cmds (process-get p 'vc-sentinel-commands)))
941 (process-put p 'vc-postprocess nil)
942 (dolist (cmd cmds)
943 ;; Each sentinel may move point and the next one should be run
944 ;; at that new point. We could get the same result by having
945 ;; each sentinel read&set process-mark, but since `cmd' needs
946 ;; to work both for async and sync processes, this would be
947 ;; difficult to achieve.
948 (vc-exec-after cmd))))
949 ;; But sometimes the sentinels really want to move point.
950 (if vc-sentinel-movepoint
951 (let ((win (get-buffer-window (current-buffer) 0)))
952 (if (not win)
953 (goto-char vc-sentinel-movepoint)
954 (with-selected-window win
955 (goto-char vc-sentinel-movepoint)))))))))
956
957 (defun vc-exec-after (code)
958 "Eval CODE when the current buffer's process is done.
959 If the current buffer has no process, just evaluate CODE.
960 Else, add CODE to the process' sentinel."
961 (let ((proc (get-buffer-process (current-buffer))))
962 (cond
963 ;; If there's no background process, just execute the code.
964 ;; We used to explicitly call delete-process on exited processes,
965 ;; but this led to timing problems causing process output to be
966 ;; lost. Terminated processes get deleted automatically
967 ;; anyway. -- cyd
968 ((or (null proc) (eq (process-status proc) 'exit))
969 ;; Make sure we've read the process's output before going further.
970 (if proc (accept-process-output proc))
971 (eval code))
972 ;; If a process is running, add CODE to the sentinel
973 ((eq (process-status proc) 'run)
974 (let ((previous (process-sentinel proc)))
975 (unless (eq previous 'vc-process-sentinel)
976 (process-put proc 'vc-previous-sentinel previous))
977 (set-process-sentinel proc 'vc-process-sentinel))
978 (process-put proc 'vc-sentinel-commands
979 (cons code (process-get proc 'vc-sentinel-commands))))
980 (t (error "Unexpected process state"))))
981 nil)
982
983 (defvar vc-post-command-functions nil
984 "Hook run at the end of `vc-do-command'.
985 Each function is called inside the buffer in which the command was run
986 and is passed 3 arguments: the COMMAND, the FILES and the FLAGS.")
987
988 (defvar w32-quote-process-args)
989
990 (defun vc-delistify (filelist)
991 "Smash a FILELIST into a file list string suitable for info messages."
992 ;; FIXME what about file names with spaces?
993 (if (not filelist) "." (mapconcat 'identity filelist " ")))
994
995 ;;;###autoload
996 (defun vc-do-command (buffer okstatus command file-or-list &rest flags)
997 "Execute a VC command, notifying user and checking for errors.
998 Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the
999 current buffer if BUFFER is t. If the destination buffer is not
1000 already current, set it up properly and erase it. The command is
1001 considered successful if its exit status does not exceed OKSTATUS (if
1002 OKSTATUS is nil, that means to ignore error status, if it is `async', that
1003 means not to wait for termination of the subprocess; if it is t it means to
1004 ignore all execution errors). FILE-OR-LIST is the name of a working file;
1005 it may be a list of files or be nil (to execute commands that don't expect
1006 a file name or set of files). If an optional list of FLAGS is present,
1007 that is inserted into the command line before the filename."
1008 ;; FIXME: file-relative-name can return a bogus result because
1009 ;; it doesn't look at the actual file-system to see if symlinks
1010 ;; come into play.
1011 (let* ((files
1012 (mapcar (lambda (f) (file-relative-name (expand-file-name f)))
1013 (if (listp file-or-list) file-or-list (list file-or-list))))
1014 (full-command
1015 ;; What we're doing here is preparing a version of the command
1016 ;; for display in a debug-progess message. If it's fewer than
1017 ;; 20 characters display the entire command (without trailing
1018 ;; newline). Otherwise display the first 20 followed by an ellipsis.
1019 (concat (if (string= (substring command -1) "\n")
1020 (substring command 0 -1)
1021 command)
1022 " "
1023 (vc-delistify (mapcar (lambda (s) (if (> (length s) 20) (concat (substring s 0 2) "...") s)) flags))
1024 " " (vc-delistify files))))
1025 (save-current-buffer
1026 (unless (or (eq buffer t)
1027 (and (stringp buffer)
1028 (string= (buffer-name) buffer))
1029 (eq buffer (current-buffer)))
1030 (vc-setup-buffer buffer))
1031 (let ((squeezed (remq nil flags))
1032 (inhibit-read-only t)
1033 (status 0))
1034 (when files
1035 (setq squeezed (nconc squeezed files)))
1036 (let ((exec-path (append vc-path exec-path))
1037 ;; Add vc-path to PATH for the execution of this command.
1038 (process-environment
1039 (cons (concat "PATH=" (getenv "PATH")
1040 path-separator
1041 (mapconcat 'identity vc-path path-separator))
1042 process-environment))
1043 (w32-quote-process-args t))
1044 (if (and (eq okstatus 'async) (file-remote-p default-directory))
1045 ;; start-process does not support remote execution
1046 (setq okstatus nil))
1047 (if (eq okstatus 'async)
1048 ;; Run asynchronously
1049 (let ((proc
1050 (let ((process-connection-type nil))
1051 (apply 'start-process command (current-buffer) command
1052 squeezed))))
1053 (if vc-command-messages
1054 (message "Running %s in background..." full-command))
1055 ;;(set-process-sentinel proc (lambda (p msg) (delete-process p)))
1056 (set-process-filter proc 'vc-process-filter)
1057 (vc-exec-after
1058 `(if vc-command-messages
1059 (message "Running %s in background... done" ',full-command))))
1060 ;; Run synchrously
1061 (if vc-command-messages
1062 (message "Running %s in foreground..." full-command))
1063 (let ((buffer-undo-list t))
1064 (setq status (apply 'process-file command nil t nil squeezed)))
1065 (when (and (not (eq t okstatus))
1066 (or (not (integerp status))
1067 (and okstatus (< okstatus status))))
1068 (pop-to-buffer (current-buffer))
1069 (goto-char (point-min))
1070 (shrink-window-if-larger-than-buffer)
1071 (error "Running %s...FAILED (%s)" full-command
1072 (if (integerp status) (format "status %d" status) status))))
1073 ;; We're done. But don't emit a status message if running
1074 ;; asychronously, it would just mislead.
1075 (if (and vc-command-messages (not (eq okstatus 'async)))
1076 (message "Running %s...OK = %d" full-command status)))
1077 (vc-exec-after
1078 `(run-hook-with-args 'vc-post-command-functions
1079 ',command ',file-or-list ',flags))
1080 status))))
1081
1082 (defun vc-position-context (posn)
1083 "Save a bit of the text around POSN in the current buffer.
1084 Used to help us find the corresponding position again later
1085 if markers are destroyed or corrupted."
1086 ;; A lot of this was shamelessly lifted from Sebastian Kremer's
1087 ;; rcs.el mode.
1088 (list posn
1089 (buffer-size)
1090 (buffer-substring posn
1091 (min (point-max) (+ posn 100)))))
1092
1093 (defun vc-find-position-by-context (context)
1094 "Return the position of CONTEXT in the current buffer.
1095 If CONTEXT cannot be found, return nil."
1096 (let ((context-string (nth 2 context)))
1097 (if (equal "" context-string)
1098 (point-max)
1099 (save-excursion
1100 (let ((diff (- (nth 1 context) (buffer-size))))
1101 (if (< diff 0) (setq diff (- diff)))
1102 (goto-char (nth 0 context))
1103 (if (or (search-forward context-string nil t)
1104 ;; Can't use search-backward since the match may continue
1105 ;; after point.
1106 (progn (goto-char (- (point) diff (length context-string)))
1107 ;; goto-char doesn't signal an error at
1108 ;; beginning of buffer like backward-char would
1109 (search-forward context-string nil t)))
1110 ;; to beginning of OSTRING
1111 (- (point) (length context-string))))))))
1112
1113 (defun vc-context-matches-p (posn context)
1114 "Return t if POSN matches CONTEXT, nil otherwise."
1115 (let* ((context-string (nth 2 context))
1116 (len (length context-string))
1117 (end (+ posn len)))
1118 (if (> end (1+ (buffer-size)))
1119 nil
1120 (string= context-string (buffer-substring posn end)))))
1121
1122 (defun vc-buffer-context ()
1123 "Return a list (POINT-CONTEXT MARK-CONTEXT REPARSE).
1124 Used by `vc-restore-buffer-context' to later restore the context."
1125 (let ((point-context (vc-position-context (point)))
1126 ;; Use mark-marker to avoid confusion in transient-mark-mode.
1127 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer))
1128 (vc-position-context (mark-marker))))
1129 ;; Make the right thing happen in transient-mark-mode.
1130 (mark-active nil)
1131 ;; The new compilation code does not use compilation-error-list any
1132 ;; more, so the code below is now ineffective and might as well
1133 ;; be disabled. -- Stef
1134 ;; ;; We may want to reparse the compilation buffer after revert
1135 ;; (reparse (and (boundp 'compilation-error-list) ;compile loaded
1136 ;; ;; Construct a list; each elt is nil or a buffer
1137 ;; ;; if that buffer is a compilation output buffer
1138 ;; ;; that contains markers into the current buffer.
1139 ;; (save-current-buffer
1140 ;; (mapcar (lambda (buffer)
1141 ;; (set-buffer buffer)
1142 ;; (let ((errors (or
1143 ;; compilation-old-error-list
1144 ;; compilation-error-list))
1145 ;; (buffer-error-marked-p nil))
1146 ;; (while (and (consp errors)
1147 ;; (not buffer-error-marked-p))
1148 ;; (and (markerp (cdr (car errors)))
1149 ;; (eq buffer
1150 ;; (marker-buffer
1151 ;; (cdr (car errors))))
1152 ;; (setq buffer-error-marked-p t))
1153 ;; (setq errors (cdr errors)))
1154 ;; (if buffer-error-marked-p buffer)))
1155 ;; (buffer-list)))))
1156 (reparse nil))
1157 (list point-context mark-context reparse)))
1158
1159 (defun vc-restore-buffer-context (context)
1160 "Restore point/mark, and reparse any affected compilation buffers.
1161 CONTEXT is that which `vc-buffer-context' returns."
1162 (let ((point-context (nth 0 context))
1163 (mark-context (nth 1 context))
1164 ;; (reparse (nth 2 context))
1165 )
1166 ;; The new compilation code does not use compilation-error-list any
1167 ;; more, so the code below is now ineffective and might as well
1168 ;; be disabled. -- Stef
1169 ;; ;; Reparse affected compilation buffers.
1170 ;; (while reparse
1171 ;; (if (car reparse)
1172 ;; (with-current-buffer (car reparse)
1173 ;; (let ((compilation-last-buffer (current-buffer)) ;select buffer
1174 ;; ;; Record the position in the compilation buffer of
1175 ;; ;; the last error next-error went to.
1176 ;; (error-pos (marker-position
1177 ;; (car (car-safe compilation-error-list)))))
1178 ;; ;; Reparse the error messages as far as they were parsed before.
1179 ;; (compile-reinitialize-errors '(4) compilation-parsing-end)
1180 ;; ;; Move the pointer up to find the error we were at before
1181 ;; ;; reparsing. Now next-error should properly go to the next one.
1182 ;; (while (and compilation-error-list
1183 ;; (/= error-pos (car (car compilation-error-list))))
1184 ;; (setq compilation-error-list (cdr compilation-error-list))))))
1185 ;; (setq reparse (cdr reparse)))
1186
1187 ;; if necessary, restore point and mark
1188 (if (not (vc-context-matches-p (point) point-context))
1189 (let ((new-point (vc-find-position-by-context point-context)))
1190 (if new-point (goto-char new-point))))
1191 (and mark-active
1192 mark-context
1193 (not (vc-context-matches-p (mark) mark-context))
1194 (let ((new-mark (vc-find-position-by-context mark-context)))
1195 (if new-mark (set-mark new-mark))))))
1196
1197 ;;; Code for deducing what fileset and backend to assume
1198
1199 (defun vc-responsible-backend (file &optional register)
1200 "Return the name of a backend system that is responsible for FILE.
1201 The optional argument REGISTER means that a backend suitable for
1202 registration should be found.
1203
1204 If REGISTER is nil, then if FILE is already registered, return the
1205 backend of FILE. If FILE is not registered, or a directory, then the
1206 first backend in `vc-handled-backends' that declares itself
1207 responsible for FILE is returned. If no backend declares itself
1208 responsible, return the first backend.
1209
1210 If REGISTER is non-nil, return the first responsible backend under
1211 which FILE is not yet registered. If there is no such backend, return
1212 the first backend under which FILE is not yet registered, but could
1213 be registered."
1214 (if (not vc-handled-backends)
1215 (error "No handled backends"))
1216 (or (and (not (file-directory-p file)) (not register) (vc-backend file))
1217 (catch 'found
1218 ;; First try: find a responsible backend. If this is for registration,
1219 ;; it must be a backend under which FILE is not yet registered.
1220 (dolist (backend vc-handled-backends)
1221 (and (or (not register)
1222 (not (vc-call-backend backend 'registered file)))
1223 (vc-call-backend backend 'responsible-p file)
1224 (throw 'found backend)))
1225 ;; no responsible backend
1226 (if (not register)
1227 ;; if this is not for registration, the first backend must do
1228 (car vc-handled-backends)
1229 ;; for registration, we need to find a new backend that
1230 ;; could register FILE
1231 (dolist (backend vc-handled-backends)
1232 (and (not (vc-call-backend backend 'registered file))
1233 (vc-call-backend backend 'could-register file)
1234 (throw 'found backend)))
1235 (error "No backend that could register")))))
1236
1237 (defun vc-expand-dirs (file-or-dir-list)
1238 "Expands directories in a file list specification.
1239 Only files already under version control are noticed."
1240 ;; FIXME: Kill this function.
1241 (let ((flattened '()))
1242 (dolist (node file-or-dir-list)
1243 (vc-file-tree-walk
1244 node (lambda (f) (if (vc-backend f) (push f flattened)))))
1245 (nreverse flattened)))
1246
1247 (defun vc-deduce-fileset (&optional allow-directory-wildcard allow-unregistered)
1248 "Deduce a set of files and a backend to which to apply an operation.
1249
1250 If we're in VC-dired mode, the fileset is the list of marked files.
1251 Otherwise, if we're looking at a buffer visiting a version-controlled file,
1252 the fileset is a singleton containing this file.
1253 If neither of these things is true, but ALLOW-DIRECTORY-WILDCARD is on
1254 and we're in a dired buffer, select the current directory.
1255 If none of these conditions is met, but ALLOW_UNREGISTERED is in and the
1256 visited file is not registered, return a singletin fileset containing it.
1257 Otherwise, throw an error."
1258 (cond (vc-dired-mode
1259 (let ((marked (dired-map-over-marks (dired-get-filename) nil)))
1260 (unless marked
1261 (error "No files have been selected."))
1262 ;; All members of the fileset must have the same backend
1263 (let ((firstbackend (vc-backend (car marked))))
1264 (dolist (f (cdr marked))
1265 (unless (eq (vc-backend f) firstbackend)
1266 (error "All members of a fileset must be under the same version-control system."))))
1267 marked))
1268 ((vc-backend buffer-file-name)
1269 (list buffer-file-name))
1270 ((and vc-parent-buffer (buffer-file-name vc-parent-buffer))
1271 (progn
1272 (set-buffer vc-parent-buffer)
1273 (vc-deduce-fileset)))
1274 ;; This is guarded by an enabling arg so users won't potentially
1275 ;; shoot themselves in the foot by modifying a fileset they can't
1276 ;; verify by eyeball. Allow it for nondestructive commands like
1277 ;; making diffs, or possibly for destructive ones that have
1278 ;; confirmation prompts.
1279 ((and allow-directory-wildcard
1280 ;; I think this is a misfeature. For now, I'll leave it in, but
1281 ;; I'll disable it anywhere else than in dired buffers. --Stef
1282 (and (derived-mode-p 'dired-mode)
1283 (equal buffer-file-name nil)
1284 (equal list-buffers-directory default-directory)))
1285 (progn
1286 (message "All version-controlled files below %s selected."
1287 default-directory)
1288 (list default-directory)))
1289 ((and allow-unregistered (not (vc-registered buffer-file-name)))
1290 (list buffer-file-name))
1291 (t (error "No fileset is available here."))))
1292
1293 (defun vc-ensure-vc-buffer ()
1294 "Make sure that the current buffer visits a version-controlled file."
1295 (if vc-dired-mode
1296 (set-buffer (find-file-noselect (dired-get-filename)))
1297 (while vc-parent-buffer
1298 (set-buffer vc-parent-buffer))
1299 (if (not buffer-file-name)
1300 (error "Buffer %s is not associated with a file" (buffer-name))
1301 (if (not (vc-backend buffer-file-name))
1302 (error "File %s is not under version control" buffer-file-name)))))
1303
1304 ;;; Support for the C-x v v command. This is where all the single-file-oriented
1305 ;;; code from before the fileset rewrite lives.
1306
1307 (defsubst vc-editable-p (file)
1308 "Return non-nil if FILE can be edited."
1309 (or (eq (vc-checkout-model file) 'implicit)
1310 (memq (vc-state file) '(edited needs-merge))))
1311
1312 (defun vc-revert-buffer-internal (&optional arg no-confirm)
1313 "Revert buffer, keeping point and mark where user expects them.
1314 Try to be clever in the face of changes due to expanded version-control
1315 key words. This is important for typeahead to work as expected.
1316 ARG and NO-CONFIRM are passed on to `revert-buffer'."
1317 (interactive "P")
1318 (widen)
1319 (let ((context (vc-buffer-context)))
1320 ;; Use save-excursion here, because it may be able to restore point
1321 ;; and mark properly even in cases where vc-restore-buffer-context
1322 ;; would fail. However, save-excursion might also get it wrong --
1323 ;; in this case, vc-restore-buffer-context gives it a second try.
1324 (save-excursion
1325 ;; t means don't call normal-mode;
1326 ;; that's to preserve various minor modes.
1327 (revert-buffer arg no-confirm t))
1328 (vc-restore-buffer-context context)))
1329
1330 (defun vc-buffer-sync (&optional not-urgent)
1331 "Make sure the current buffer and its working file are in sync.
1332 NOT-URGENT means it is ok to continue if the user says not to save."
1333 (if (buffer-modified-p)
1334 (if (or vc-suppress-confirm
1335 (y-or-n-p (format "Buffer %s modified; save it? " (buffer-name))))
1336 (save-buffer)
1337 (unless not-urgent
1338 (error "Aborted")))))
1339
1340 (defvar vc-dired-window-configuration)
1341
1342 ;; Here's the major entry point.
1343
1344 ;;;###autoload
1345 (defun vc-next-action (verbose)
1346 "Do the next logical version control operation on the current fileset.
1347 This requires that all files in the fileset be in the same state.
1348
1349 For locking systems:
1350 If every file is not already registered, this registers each for version
1351 control.
1352 If every file is registered and not locked by anyone, this checks out
1353 a writable and locked file of each ready for editing.
1354 If every file is checked out and locked by the calling user, this
1355 first checks to see if each file has changed since checkout. If not,
1356 it performs a revert on that file.
1357 If every file has been changed, this pops up a buffer for entry
1358 of a log message; when the message has been entered, it checks in the
1359 resulting changes along with the log message as change commentary. If
1360 the variable `vc-keep-workfiles' is non-nil (which is its default), a
1361 read-only copy of each changed file is left in place afterwards.
1362 If the affected file is registered and locked by someone else, you are
1363 given the option to steal the lock(s).
1364
1365 For merging systems:
1366 If every file is not already registered, this registers each one for version
1367 control. This does an add, but not a commit.
1368 If every file is added but not committed, each one is committed.
1369 If every working file is changed, but the corresponding repository file is
1370 unchanged, this pops up a buffer for entry of a log message; when the
1371 message has been entered, it checks in the resulting changes along
1372 with the logmessage as change commentary. A writable file is retained.
1373 If the repository file is changed, you are asked if you want to
1374 merge in the changes into your working copy."
1375 (interactive "P")
1376 (let* ((files (vc-deduce-fileset nil t))
1377 (state (vc-state (car files)))
1378 (model (vc-checkout-model (car files)))
1379 revision)
1380 ;; Verify that the fileset is homogenous
1381 (dolist (file (cdr files))
1382 (if (not (eq (vc-state file) state))
1383 (error "Fileset is in a mixed-up state"))
1384 (if (not (eq (vc-checkout-model file) model))
1385 (error "Fileset has mixed checkout models")))
1386 ;; Check for buffers in the fileset not matching the on-disk contents.
1387 (dolist (file files)
1388 (let ((visited (get-file-buffer file)))
1389 (when visited
1390 (if vc-dired-mode
1391 (switch-to-buffer-other-window visited)
1392 (set-buffer visited))
1393 ;; Check relation of buffer and file, and make sure
1394 ;; user knows what he's doing. First, finding the file
1395 ;; will check whether the file on disk is newer.
1396 ;; Ignore buffer-read-only during this test, and
1397 ;; preserve find-file-literally.
1398 (let ((buffer-read-only (not (file-writable-p file))))
1399 (find-file-noselect file nil find-file-literally))
1400 (if (not (verify-visited-file-modtime (current-buffer)))
1401 (if (yes-or-no-p (format "Replace %s on disk with buffer contents? " file))
1402 (write-file buffer-file-name)
1403 (error "Aborted"))
1404 ;; Now, check if we have unsaved changes.
1405 (vc-buffer-sync t)
1406 (if (buffer-modified-p)
1407 (or (y-or-n-p (message "Use %s on disk, keeping modified buffer? " file))
1408 (error "Aborted")))))))
1409 ;; Do the right thing
1410 (cond
1411 ;; Files aren't registered
1412 ((not state)
1413 (mapc 'vc-register files))
1414 ;; Files are up-to-date, or need a merge and user specified a revision
1415 ((or (eq state 'up-to-date) (and verbose (eq state 'needs-patch)))
1416 (cond
1417 (verbose
1418 ;; go to a different revision
1419 (setq revision (read-string "Branch, revision, or backend to move to: "))
1420 (let ((vsym (intern-soft (upcase revision))))
1421 (if (member vsym vc-handled-backends)
1422 (dolist (file files) (vc-transfer-file file vsym))
1423 (dolist (file files)
1424 (vc-checkout file (eq model 'implicit) revision)))))
1425 ((not (eq model 'implicit))
1426 ;; check the files out
1427 (dolist (file files) (vc-checkout file t)))
1428 (t
1429 ;; do nothing
1430 (message "Fileset is up-to-date"))))
1431 ;; Files have local changes
1432 ((eq state 'edited)
1433 (let ((ready-for-commit files))
1434 ;; If files are edited but read-only, give user a chance to correct
1435 (dolist (file files)
1436 (if (not (file-writable-p file))
1437 (progn
1438 ;; Make the file+buffer read-write.
1439 (unless (y-or-n-p (format "%s is edited but read-only; make it writable and continue?" file))
1440 (error "Aborted"))
1441 (set-file-modes file (logior (file-modes file) 128))
1442 (let ((visited (get-file-buffer file)))
1443 (if visited
1444 (with-current-buffer visited
1445 (toggle-read-only -1)))))))
1446 ;; Allow user to revert files with no changes
1447 (save-excursion
1448 (dolist (file files)
1449 (let ((visited (get-file-buffer file)))
1450 ;; For files with locking, if the file does not contain
1451 ;; any changes, just let go of the lock, i.e. revert.
1452 (if (and (not (eq model 'implicit))
1453 (vc-workfile-unchanged-p file)
1454 ;; If buffer is modified, that means the user just
1455 ;; said no to saving it; in that case, don't revert,
1456 ;; because the user might intend to save after
1457 ;; finishing the log entry and committing.
1458 (not (and visited (buffer-modified-p))))
1459 (progn
1460 (vc-revert-file file)
1461 (delete file ready-for-commit))))))
1462 ;; Remaining files need to be committed
1463 (if (not ready-for-commit)
1464 (message "No files remain to be committed")
1465 (if (not verbose)
1466 (vc-checkin ready-for-commit)
1467 (progn
1468 (setq revision (read-string "New revision or backend: "))
1469 (let ((vsym (intern (upcase revision))))
1470 (if (member vsym vc-handled-backends)
1471 (vc-transfer-file file vsym)
1472 (vc-checkin ready-for-commit revision))))))))
1473 ;; locked by somebody else (locking VCSes only)
1474 ((stringp state)
1475 (let ((revision
1476 (if verbose
1477 (read-string "Revision to steal: ")
1478 (vc-working-revision file))))
1479 (dolist (file files) (vc-steal-lock file revision state))))
1480 ;; needs-patch
1481 ((eq state 'needs-patch)
1482 (dolist (file files)
1483 (if (yes-or-no-p (format
1484 "%s is not up-to-date. Get latest revision? "
1485 (file-name-nondirectory file)))
1486 (vc-checkout file (eq model 'implicit) t)
1487 (if (and (not (eq model 'implicit))
1488 (yes-or-no-p "Lock this revision? "))
1489 (vc-checkout file t)))))
1490 ;; needs-merge
1491 ((eq state 'needs-merge)
1492 (dolist (file files)
1493 (if (yes-or-no-p (format
1494 "%s is not up-to-date. Merge in changes now? "
1495 (file-name-nondirectory file)))
1496 (vc-maybe-resolve-conflicts file (vc-call merge-news file)))))
1497
1498 ;; unlocked-changes
1499 ((eq state 'unlocked-changes)
1500 (dolist (file files)
1501 (if (not (equal buffer-file-name file))
1502 (find-file-other-window file))
1503 (if (save-window-excursion
1504 (vc-diff-internal nil (list file) (vc-working-revision file) nil)
1505 (goto-char (point-min))
1506 (let ((inhibit-read-only t))
1507 (insert
1508 (format "Changes to %s since last lock:\n\n" file)))
1509 (not (beep))
1510 (yes-or-no-p (concat "File has unlocked changes. "
1511 "Claim lock retaining changes? ")))
1512 (progn (vc-call steal-lock file)
1513 (clear-visited-file-modtime)
1514 ;; Must clear any headers here because they wouldn't
1515 ;; show that the file is locked now.
1516 (vc-clear-headers file)
1517 (write-file buffer-file-name)
1518 (vc-mode-line file))
1519 (if (not (yes-or-no-p
1520 "Revert to checked-in revision, instead? "))
1521 (error "Checkout aborted")
1522 (vc-revert-buffer-internal t t)
1523 (vc-checkout file t))))))))
1524
1525 (defun vc-create-repo (backend)
1526 "Create an empty repository in the current directory."
1527 (interactive
1528 (list
1529 (intern
1530 (upcase
1531 (completing-read
1532 "Create repository for: "
1533 (mapcar (lambda (b) (list (downcase (symbol-name b)))) vc-handled-backends)
1534 nil t)))))
1535 (vc-call-backend backend 'create-repo))
1536
1537 ;;;###autoload
1538 (defun vc-register (&optional set-revision comment)
1539 "Register the current file into a version control system.
1540 With prefix argument SET-REVISION, allow user to specify initial revision
1541 level. If COMMENT is present, use that as an initial comment.
1542
1543 The version control system to use is found by cycling through the list
1544 `vc-handled-backends'. The first backend in that list which declares
1545 itself responsible for the file (usually because other files in that
1546 directory are already registered under that backend) will be used to
1547 register the file. If no backend declares itself responsible, the
1548 first backend that could register the file is used."
1549 (interactive "P")
1550 (unless buffer-file-name (error "No visited file"))
1551 (when (vc-backend buffer-file-name)
1552 (if (vc-registered buffer-file-name)
1553 (error "This file is already registered")
1554 (unless (y-or-n-p "Previous master file has vanished. Make a new one? ")
1555 (error "Aborted"))))
1556 ;; Watch out for new buffers of size 0: the corresponding file
1557 ;; does not exist yet, even though buffer-modified-p is nil.
1558 (if (and (not (buffer-modified-p))
1559 (zerop (buffer-size))
1560 (not (file-exists-p buffer-file-name)))
1561 (set-buffer-modified-p t))
1562 (vc-buffer-sync)
1563
1564 (vc-start-entry (list buffer-file-name)
1565 (if set-revision
1566 (read-string (format "Initial revision level for %s: "
1567 (buffer-name)))
1568 (vc-call-backend (vc-responsible-backend buffer-file-name)
1569 'init-revision))
1570 (or comment (not vc-initial-comment))
1571 nil
1572 "Enter initial comment."
1573 (lambda (files rev comment)
1574 (dolist (file files)
1575 (message "Registering %s... " file)
1576 (let ((backend (vc-responsible-backend file t)))
1577 (vc-file-clearprops file)
1578 (vc-call-backend backend 'register (list file) rev comment)
1579 (vc-file-setprop file 'vc-backend backend)
1580 (unless vc-make-backup-files
1581 (make-local-variable 'backup-inhibited)
1582 (setq backup-inhibited t)))
1583 (message "Registering %s... done" file)))))
1584
1585 (defun vc-register-with (backend)
1586 "Register the current file with a specified back end."
1587 (interactive "SBackend: ")
1588 (if (not (member backend vc-handled-backends))
1589 (error "Unknown back end."))
1590 (let ((vc-handled-backends (list backend)))
1591 (call-interactively 'vc-register)))
1592
1593 (defun vc-resynch-window (file &optional keep noquery)
1594 "If FILE is in the current buffer, either revert or unvisit it.
1595 The choice between revert (to see expanded keywords) and unvisit depends on
1596 `vc-keep-workfiles'. NOQUERY if non-nil inhibits confirmation for
1597 reverting. NOQUERY should be t *only* if it is known the only
1598 difference between the buffer and the file is due to version control
1599 rather than user editing!"
1600 (and (string= buffer-file-name file)
1601 (if keep
1602 (progn
1603 (vc-revert-buffer-internal t noquery)
1604 ;; TODO: Adjusting view mode might no longer be necessary
1605 ;; after RMS change to files.el of 1999-08-08. Investigate
1606 ;; this when we install the new VC.
1607 (and view-read-only
1608 (if (file-writable-p file)
1609 (and view-mode
1610 (let ((view-old-buffer-read-only nil))
1611 (view-mode-exit)))
1612 (and (not view-mode)
1613 (not (eq (get major-mode 'mode-class) 'special))
1614 (view-mode-enter))))
1615 (vc-mode-line buffer-file-name))
1616 (kill-buffer (current-buffer)))))
1617
1618 (defun vc-resynch-buffer (file &optional keep noquery)
1619 "If FILE is currently visited, resynch its buffer."
1620 (if (string= buffer-file-name file)
1621 (vc-resynch-window file keep noquery)
1622 (let ((buffer (get-file-buffer file)))
1623 (if buffer
1624 (with-current-buffer buffer
1625 (vc-resynch-window file keep noquery)))))
1626 (vc-dired-resynch-file file))
1627
1628 (defun vc-start-entry (files rev comment initial-contents msg action &optional after-hook)
1629 "Accept a comment for an operation on FILES revision REV.
1630 If COMMENT is nil, pop up a VC-log buffer, emit MSG, and set the
1631 action on close to ACTION. If COMMENT is a string and
1632 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial
1633 contents of the log entry buffer. If COMMENT is a string and
1634 INITIAL-CONTENTS is nil, do action immediately as if the user had
1635 entered COMMENT. If COMMENT is t, also do action immediately with an
1636 empty comment. Remember the file's buffer in `vc-parent-buffer'
1637 \(current one if no file). AFTER-HOOK specifies the local value
1638 for vc-log-operation-hook."
1639 (let ((parent
1640 (if (and files (equal (length files) 1))
1641 (get-file-buffer (car files))
1642 (current-buffer))))
1643 (if vc-before-checkin-hook
1644 (if files
1645 (with-current-buffer parent
1646 (run-hooks 'vc-before-checkin-hook))
1647 (run-hooks 'vc-before-checkin-hook)))
1648 (if (and comment (not initial-contents))
1649 (set-buffer (get-buffer-create "*VC-log*"))
1650 (pop-to-buffer (get-buffer-create "*VC-log*")))
1651 (set (make-local-variable 'vc-parent-buffer) parent)
1652 (set (make-local-variable 'vc-parent-buffer-name)
1653 (concat " from " (buffer-name vc-parent-buffer)))
1654 ;;(if file (vc-mode-line file))
1655 (vc-log-edit files)
1656 (make-local-variable 'vc-log-after-operation-hook)
1657 (if after-hook
1658 (setq vc-log-after-operation-hook after-hook))
1659 (setq vc-log-operation action)
1660 (setq vc-log-revision rev)
1661 (when comment
1662 (erase-buffer)
1663 (when (stringp comment) (insert comment)))
1664 (if (or (not comment) initial-contents)
1665 (message "%s Type C-c C-c when done" msg)
1666 (vc-finish-logentry (eq comment t)))))
1667
1668 (defun vc-checkout (file &optional writable rev)
1669 "Retrieve a copy of the revision REV of FILE.
1670 If WRITABLE is non-nil, make sure the retrieved file is writable.
1671 REV defaults to the latest revision.
1672
1673 After check-out, runs the normal hook `vc-checkout-hook'."
1674 (and writable
1675 (not rev)
1676 (vc-call make-version-backups-p file)
1677 (vc-up-to-date-p file)
1678 (vc-make-version-backup file))
1679 (with-vc-properties
1680 (list file)
1681 (condition-case err
1682 (vc-call checkout file writable rev)
1683 (file-error
1684 ;; Maybe the backend is not installed ;-(
1685 (when writable
1686 (let ((buf (get-file-buffer file)))
1687 (when buf (with-current-buffer buf (toggle-read-only -1)))))
1688 (signal (car err) (cdr err))))
1689 `((vc-state . ,(if (or (eq (vc-checkout-model file) 'implicit)
1690 (not writable))
1691 (if (vc-call latest-on-branch-p file)
1692 'up-to-date
1693 'needs-patch)
1694 'edited))
1695 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
1696 (vc-resynch-buffer file t t)
1697 (run-hooks 'vc-checkout-hook))
1698
1699 (defun vc-steal-lock (file rev owner)
1700 "Steal the lock on FILE."
1701 (let (file-description)
1702 (if rev
1703 (setq file-description (format "%s:%s" file rev))
1704 (setq file-description file))
1705 (if (not (yes-or-no-p (format "Steal the lock on %s from %s? "
1706 file-description owner)))
1707 (error "Steal canceled"))
1708 (message "Stealing lock on %s..." file)
1709 (with-vc-properties
1710 (list file)
1711 (vc-call steal-lock file rev)
1712 `((vc-state . edited)))
1713 (vc-resynch-buffer file t t)
1714 (message "Stealing lock on %s...done" file)
1715 ;; Write mail after actually stealing, because if the stealing
1716 ;; goes wrong, we don't want to send any mail.
1717 (compose-mail owner (format "Stolen lock on %s" file-description))
1718 (setq default-directory (expand-file-name "~/"))
1719 (goto-char (point-max))
1720 (insert
1721 (format "I stole the lock on %s, " file-description)
1722 (current-time-string)
1723 ".\n")
1724 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
1725
1726 (defun vc-checkin (files &optional rev comment initial-contents)
1727 "Check in FILES.
1728 The optional argument REV may be a string specifying the new revision
1729 level (if nil increment the current level). COMMENT is a comment
1730 string; if omitted, a buffer is popped up to accept a comment. If
1731 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial contents
1732 of the log entry buffer.
1733
1734 If `vc-keep-workfiles' is nil, FILE is deleted afterwards, provided
1735 that the version control system supports this mode of operation.
1736
1737 Runs the normal hook `vc-checkin-hook'."
1738 (vc-start-entry
1739 files rev comment initial-contents
1740 "Enter a change comment."
1741 (lambda (files rev comment)
1742 (message "Checking in %s..." (vc-delistify files))
1743 ;; "This log message intentionally left almost blank".
1744 ;; RCS 5.7 gripes about white-space-only comments too.
1745 (or (and comment (string-match "[^\t\n ]" comment))
1746 (setq comment "*** empty log message ***"))
1747 (with-vc-properties
1748 files
1749 ;; We used to change buffers to get local value of vc-checkin-switches,
1750 ;; but 'the' local buffer is not a well-defined concept for filesets.
1751 (progn
1752 (vc-call checkin files rev comment)
1753 (mapc 'vc-delete-automatic-version-backups files))
1754 `((vc-state . up-to-date)
1755 (vc-checkout-time . ,(nth 5 (file-attributes file)))
1756 (vc-working-revision . nil)))
1757 (message "Checking in %s...done" (vc-delistify files)))
1758 'vc-checkin-hook))
1759
1760 (defun vc-finish-logentry (&optional nocomment)
1761 "Complete the operation implied by the current log entry.
1762 Use the contents of the current buffer as a check-in or registration
1763 comment. If the optional arg NOCOMMENT is non-nil, then don't check
1764 the buffer contents as a comment."
1765 (interactive)
1766 ;; Check and record the comment, if any.
1767 (unless nocomment
1768 ;; Comment too long?
1769 (vc-call-backend (or (if vc-log-fileset (vc-backend vc-log-fileset))
1770 (vc-responsible-backend default-directory))
1771 'logentry-check)
1772 (run-hooks 'vc-logentry-check-hook))
1773 ;; Sync parent buffer in case the user modified it while editing the comment.
1774 ;; But not if it is a vc-dired buffer.
1775 (with-current-buffer vc-parent-buffer
1776 (or vc-dired-mode (vc-buffer-sync)))
1777 (if (not vc-log-operation)
1778 (error "No log operation is pending"))
1779 ;; save the parameters held in buffer-local variables
1780 (let ((log-operation vc-log-operation)
1781 (log-fileset vc-log-fileset)
1782 (log-revision vc-log-revision)
1783 (log-entry (buffer-string))
1784 (after-hook vc-log-after-operation-hook)
1785 (tmp-vc-parent-buffer vc-parent-buffer))
1786 (pop-to-buffer vc-parent-buffer)
1787 ;; OK, do it to it
1788 (save-excursion
1789 (funcall log-operation
1790 log-fileset
1791 log-revision
1792 log-entry))
1793 ;; Remove checkin window (after the checkin so that if that fails
1794 ;; we don't zap the *VC-log* buffer and the typing therein).
1795 (let ((logbuf (get-buffer "*VC-log*")))
1796 (cond ((and logbuf vc-delete-logbuf-window)
1797 (delete-windows-on logbuf (selected-frame))
1798 ;; Kill buffer and delete any other dedicated windows/frames.
1799 (kill-buffer logbuf))
1800 (logbuf (pop-to-buffer "*VC-log*")
1801 (bury-buffer)
1802 (pop-to-buffer tmp-vc-parent-buffer))))
1803 ;; Now make sure we see the expanded headers
1804 (if log-fileset
1805 (mapc
1806 (lambda (file) (vc-resynch-buffer file vc-keep-workfiles t))
1807 log-fileset))
1808 (if vc-dired-mode
1809 (dired-move-to-filename))
1810 (run-hooks after-hook 'vc-finish-logentry-hook)))
1811
1812 ;;; Additional entry points for examining version histories
1813
1814 ;; (defun vc-default-diff-tree (backend dir rev1 rev2)
1815 ;; "List differences for all registered files at and below DIR.
1816 ;; The meaning of REV1 and REV2 is the same as for `vc-revision-diff'."
1817 ;; ;; This implementation does an explicit tree walk, and calls
1818 ;; ;; vc-BACKEND-diff directly for each file. An optimization
1819 ;; ;; would be to use `vc-diff-internal', so that diffs can be local,
1820 ;; ;; and to call it only for files that are actually changed.
1821 ;; ;; However, this is expensive for some backends, and so it is left
1822 ;; ;; to backend-specific implementations.
1823 ;; (setq default-directory dir)
1824 ;; (vc-file-tree-walk
1825 ;; default-directory
1826 ;; (lambda (f)
1827 ;; (vc-exec-after
1828 ;; `(let ((coding-system-for-read (vc-coding-system-for-diff ',f)))
1829 ;; (message "Looking at %s" ',f)
1830 ;; (vc-call-backend ',(vc-backend f)
1831 ;; 'diff (list ',f) ',rev1 ',rev2))))))
1832
1833 (defun vc-coding-system-for-diff (file)
1834 "Return the coding system for reading diff output for FILE."
1835 (or coding-system-for-read
1836 ;; if we already have this file open,
1837 ;; use the buffer's coding system
1838 (let ((buf (find-buffer-visiting file)))
1839 (if buf (with-current-buffer buf
1840 buffer-file-coding-system)))
1841 ;; otherwise, try to find one based on the file name
1842 (car (find-operation-coding-system 'insert-file-contents file))
1843 ;; and a final fallback
1844 'undecided))
1845
1846 (defun vc-switches (backend op)
1847 (let ((switches
1848 (or (if backend
1849 (let ((sym (vc-make-backend-sym
1850 backend (intern (concat (symbol-name op)
1851 "-switches")))))
1852 (if (boundp sym) (symbol-value sym))))
1853 (let ((sym (intern (format "vc-%s-switches" (symbol-name op)))))
1854 (if (boundp sym) (symbol-value sym)))
1855 (cond
1856 ((eq op 'diff) diff-switches)))))
1857 (if (stringp switches) (list switches)
1858 ;; If not a list, return nil.
1859 ;; This is so we can set vc-diff-switches to t to override
1860 ;; any switches in diff-switches.
1861 (if (listp switches) switches))))
1862
1863 ;; Old def for compatibility with Emacs-21.[123].
1864 (defmacro vc-diff-switches-list (backend) `(vc-switches ',backend 'diff))
1865 (make-obsolete 'vc-diff-switches-list 'vc-switches "22.1")
1866
1867 (defun vc-diff-sentinel (verbose rev1-name rev2-name)
1868 ;; The empty sync output case has already been handled, so the only
1869 ;; possibility of an empty output is for an async process, in which case
1870 ;; it's important to insert the "diffs end here" message in the buffer
1871 ;; since the user may miss a message in the echo area.
1872 (when verbose
1873 (let ((inhibit-read-only t))
1874 (if (eq (buffer-size) 0)
1875 (insert "No differences found.\n")
1876 (insert (format "\n\nDiffs between %s and %s end here." rev1-name rev2-name)))))
1877 (goto-char (point-min))
1878 (shrink-window-if-larger-than-buffer))
1879
1880 (defvar vc-diff-added-files nil
1881 "If non-nil, diff added files by comparing them to /dev/null.")
1882
1883 (defun vc-diff-internal (async files rev1 rev2 &optional verbose)
1884 "Report diffs between two revisions of a fileset.
1885 Diff output goes to the *vc-diff* buffer. The function
1886 returns t if the buffer had changes, nil otherwise."
1887 (let* ((filenames (vc-delistify files))
1888 (rev1-name (or rev1 "working revision"))
1889 (rev2-name (or rev2 "workfile"))
1890 ;; Set coding system based on the first file. It's a kluge,
1891 ;; but the only way to set it for each file included would
1892 ;; be to call the back end separately for each file.
1893 (coding-system-for-read
1894 (if files (vc-coding-system-for-diff (car files)) 'undecided)))
1895 (vc-setup-buffer "*vc-diff*")
1896 (message "Finding changes in %s..." filenames)
1897 ;; Many backends don't handle well the case of a file that has been
1898 ;; added but not yet committed to the repo (notably CVS and Subversion).
1899 ;; Do that work here so the backends don't have to futz with it. --ESR
1900 ;;
1901 ;; Actually most backends (including CVS) have options to control the
1902 ;; behavior since which one is better depends on the user and on the
1903 ;; situation). Worse yet: this code does not handle the case where
1904 ;; `file' is a directory which contains added files.
1905 ;; I made it conditional on vc-diff-added-files but it should probably
1906 ;; just be removed (or copied/moved to specific backends). --Stef.
1907 (when vc-diff-added-files
1908 (let ((filtered '()))
1909 (dolist (file files)
1910 (if (or (file-directory-p file)
1911 (not (string= (vc-working-revision file) "0")))
1912 (push file filtered)
1913 ;; This file is added but not yet committed;
1914 ;; there is no master file to diff against.
1915 (if (or rev1 rev2)
1916 (error "No revisions of %s exist" file)
1917 ;; We regard this as "changed".
1918 ;; Diff it against /dev/null.
1919 (apply 'vc-do-command "*vc-diff*"
1920 1 "diff" file
1921 (append (vc-switches nil 'diff) '("/dev/null"))))))
1922 (setq files (nreverse filtered))))
1923 (let ((vc-disable-async-diff (not async)))
1924 (vc-call diff files rev1 rev2 "*vc-diff*"))
1925 (set-buffer "*vc-diff*")
1926 (if (and (zerop (buffer-size))
1927 (not (get-buffer-process (current-buffer))))
1928 ;; Treat this case specially so as not to pop the buffer.
1929 (progn
1930 (message "No changes between %s and %s" rev1-name rev2-name)
1931 nil)
1932 (pop-to-buffer (current-buffer))
1933 (diff-mode)
1934 ;; Make the *vc-diff* buffer read only, the diff-mode key
1935 ;; bindings are nicer for read only buffers. pcl-cvs does the
1936 ;; same thing.
1937 (setq buffer-read-only t)
1938 (vc-exec-after `(vc-diff-sentinel ,verbose ,rev1-name ,rev2-name))
1939 ;; In the async case, we return t even if there are no differences
1940 ;; because we don't know that yet.
1941 t)))
1942
1943 ;;;###autoload
1944 (defun vc-version-diff (files rev1 rev2)
1945 "Report diffs between revisions of the fileset in the repository history."
1946 (interactive
1947 (let* ((files (vc-deduce-fileset t))
1948 (first (car files))
1949 (completion-table
1950 (vc-call revision-completion-table files))
1951 (rev1-default nil)
1952 (rev2-default nil))
1953 (cond
1954 ;; someday we may be able to do revision completion on non-singleton
1955 ;; filesets, but not yet.
1956 ((/= (length files) 1)
1957 nil)
1958 ;; if it's a directory, don't supply any revision default
1959 ((file-directory-p first)
1960 nil)
1961 ;; if the file is not up-to-date, use working revision as older revision
1962 ((not (vc-up-to-date-p first))
1963 (setq rev1-default (vc-working-revision first)))
1964 ;; if the file is not locked, use last and previous revisions as defaults
1965 (t
1966 (setq rev1-default (vc-call previous-revision first
1967 (vc-working-revision first)))
1968 (if (string= rev1-default "") (setq rev1-default nil))
1969 (setq rev2-default (vc-working-revision first))))
1970 ;; construct argument list
1971 (let* ((rev1-prompt (if rev1-default
1972 (concat "Older revision (default "
1973 rev1-default "): ")
1974 "Older revision: "))
1975 (rev2-prompt (concat "Newer revision (default "
1976 (or rev2-default "current source") "): "))
1977 (rev1 (if completion-table
1978 (completing-read rev1-prompt completion-table
1979 nil nil nil nil rev1-default)
1980 (read-string rev1-prompt nil nil rev1-default)))
1981 (rev2 (if completion-table
1982 (completing-read rev2-prompt completion-table
1983 nil nil nil nil rev2-default)
1984 (read-string rev2-prompt nil nil rev2-default))))
1985 (if (string= rev1 "") (setq rev1 nil))
1986 (if (string= rev2 "") (setq rev2 nil))
1987 (list files rev1 rev2))))
1988 (if (and (not rev1) rev2)
1989 (error "Not a valid revision range."))
1990 (vc-diff-internal t files rev1 rev2 (interactive-p)))
1991
1992 ;; (defun vc-contains-version-controlled-file (dir)
1993 ;; "Return t if DIR contains a version-controlled file, nil otherwise."
1994 ;; (catch 'found
1995 ;; (mapc (lambda (f) (and (not (file-directory-p f)) (vc-backend f) (throw 'found 't))) (directory-files dir))
1996 ;; nil))
1997
1998 ;;;###autoload
1999 (defun vc-diff (historic &optional not-urgent)
2000 "Display diffs between file revisions.
2001 Normally this compares the currently selected fileset with their
2002 working revisions. With a prefix argument HISTORIC, it reads two revision
2003 designators specifying which revisions to compare.
2004
2005 If no current fileset is available (that is, we are not in
2006 VC-Dired mode and the visited file of the current buffer is not
2007 under version control) and we're in a Dired buffer, use
2008 the current directory.
2009 The optional argument NOT-URGENT non-nil means it is ok to say no to
2010 saving the buffer."
2011 (interactive (list current-prefix-arg t))
2012 (if historic
2013 (call-interactively 'vc-version-diff)
2014 (let* ((files (vc-deduce-fileset t)))
2015 (if buffer-file-name (vc-buffer-sync not-urgent))
2016 (vc-diff-internal t files nil nil (interactive-p)))))
2017
2018
2019 ;;;###autoload
2020 (defun vc-revision-other-window (rev)
2021 "Visit revision REV of the current file in another window.
2022 If the current file is named `F', the revision is named `F.~REV~'.
2023 If `F.~REV~' already exists, use it instead of checking it out again."
2024 (interactive
2025 (save-current-buffer
2026 (vc-ensure-vc-buffer)
2027 (let ((completion-table
2028 (vc-call revision-completion-table buffer-file-name))
2029 (prompt "Revision to visit (default is working revision): "))
2030 (list
2031 (if completion-table
2032 (completing-read prompt completion-table)
2033 (read-string prompt))))))
2034 (vc-ensure-vc-buffer)
2035 (let* ((file buffer-file-name)
2036 (revision (if (string-equal rev "")
2037 (vc-working-revision file)
2038 rev)))
2039 (switch-to-buffer-other-window (vc-find-revision file revision))))
2040
2041 (defun vc-find-revision (file revision)
2042 "Read REVISION of FILE into a buffer and return the buffer."
2043 (let ((automatic-backup (vc-version-backup-file-name file revision))
2044 (filebuf (or (get-file-buffer file) (current-buffer)))
2045 (filename (vc-version-backup-file-name file revision 'manual)))
2046 (unless (file-exists-p filename)
2047 (if (file-exists-p automatic-backup)
2048 (rename-file automatic-backup filename nil)
2049 (message "Checking out %s..." filename)
2050 (with-current-buffer filebuf
2051 (let ((failed t))
2052 (unwind-protect
2053 (let ((coding-system-for-read 'no-conversion)
2054 (coding-system-for-write 'no-conversion))
2055 (with-temp-file filename
2056 (let ((outbuf (current-buffer)))
2057 ;; Change buffer to get local value of
2058 ;; vc-checkout-switches.
2059 (with-current-buffer filebuf
2060 (vc-call find-revision file revision outbuf))))
2061 (setq failed nil))
2062 (if (and failed (file-exists-p filename))
2063 (delete-file filename))))
2064 (vc-mode-line file))
2065 (message "Checking out %s...done" filename)))
2066 (find-file-noselect filename)))
2067
2068 ;; Header-insertion code
2069
2070 ;;;###autoload
2071 (defun vc-insert-headers ()
2072 "Insert headers into a file for use with a version control system.
2073 Headers desired are inserted at point, and are pulled from
2074 the variable `vc-BACKEND-header'."
2075 (interactive)
2076 (vc-ensure-vc-buffer)
2077 (save-excursion
2078 (save-restriction
2079 (widen)
2080 (if (or (not (vc-check-headers))
2081 (y-or-n-p "Version headers already exist. Insert another set? "))
2082 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
2083 (comment-start-vc (or (car delims) comment-start "#"))
2084 (comment-end-vc (or (car (cdr delims)) comment-end ""))
2085 (hdsym (vc-make-backend-sym (vc-backend buffer-file-name)
2086 'header))
2087 (hdstrings (and (boundp hdsym) (symbol-value hdsym))))
2088 (dolist (s hdstrings)
2089 (insert comment-start-vc "\t" s "\t"
2090 comment-end-vc "\n"))
2091 (if vc-static-header-alist
2092 (dolist (f vc-static-header-alist)
2093 (if (string-match (car f) buffer-file-name)
2094 (insert (format (cdr f) (car hdstrings)))))))))))
2095
2096 (defun vc-clear-headers (&optional file)
2097 "Clear all version headers in the current buffer (or FILE).
2098 The headers are reset to their non-expanded form."
2099 (let* ((filename (or file buffer-file-name))
2100 (visited (find-buffer-visiting filename))
2101 (backend (vc-backend filename)))
2102 (when (vc-find-backend-function backend 'clear-headers)
2103 (if visited
2104 (let ((context (vc-buffer-context)))
2105 ;; save-excursion may be able to relocate point and mark
2106 ;; properly. If it fails, vc-restore-buffer-context
2107 ;; will give it a second try.
2108 (save-excursion
2109 (vc-call-backend backend 'clear-headers))
2110 (vc-restore-buffer-context context))
2111 (set-buffer (find-file-noselect filename))
2112 (vc-call-backend backend 'clear-headers)
2113 (kill-buffer filename)))))
2114
2115 ;;;###autoload
2116 (defun vc-merge ()
2117 "Merge changes between two revisions into the current buffer's file.
2118 This asks for two revisions to merge from in the minibuffer. If the
2119 first revision is a branch number, then merge all changes from that
2120 branch. If the first revision is empty, merge news, i.e. recent changes
2121 from the current branch.
2122
2123 See Info node `Merging'."
2124 (interactive)
2125 (vc-ensure-vc-buffer)
2126 (vc-buffer-sync)
2127 (let* ((file buffer-file-name)
2128 (backend (vc-backend file))
2129 (state (vc-state file))
2130 first-revision second-revision status)
2131 (cond
2132 ((stringp state) ;; Locking VCses only
2133 (error "File is locked by %s" state))
2134 ((not (vc-editable-p file))
2135 (if (y-or-n-p
2136 "File must be checked out for merging. Check out now? ")
2137 (vc-checkout file t)
2138 (error "Merge aborted"))))
2139 (setq first-revision
2140 (read-string (concat "Branch or revision to merge from "
2141 "(default news on current branch): ")))
2142 (if (string= first-revision "")
2143 (if (not (vc-find-backend-function backend 'merge-news))
2144 (error "Sorry, merging news is not implemented for %s" backend)
2145 (setq status (vc-call merge-news file)))
2146 (if (not (vc-find-backend-function backend 'merge))
2147 (error "Sorry, merging is not implemented for %s" backend)
2148 (if (not (vc-branch-p first-revision))
2149 (setq second-revision
2150 (read-string "Second revision: "
2151 (concat (vc-branch-part first-revision) ".")))
2152 ;; We want to merge an entire branch. Set revisions
2153 ;; accordingly, so that vc-BACKEND-merge understands us.
2154 (setq second-revision first-revision)
2155 ;; first-revision must be the starting point of the branch
2156 (setq first-revision (vc-branch-part first-revision)))
2157 (setq status (vc-call merge file first-revision second-revision))))
2158 (vc-maybe-resolve-conflicts file status "WORKFILE" "MERGE SOURCE")))
2159
2160 (defun vc-maybe-resolve-conflicts (file status &optional name-A name-B)
2161 (vc-resynch-buffer file t (not (buffer-modified-p)))
2162 (if (zerop status) (message "Merge successful")
2163 (smerge-mode 1)
2164 (message "File contains conflicts.")))
2165
2166 ;;;###autoload
2167 (defalias 'vc-resolve-conflicts 'smerge-ediff)
2168
2169 ;; The VC directory major mode. Coopt Dired for this.
2170 ;; All VC commands get mapped into logical equivalents.
2171
2172 (defvar vc-dired-switches)
2173 (defvar vc-dired-terse-mode)
2174
2175 (defvar vc-dired-mode-map
2176 (let ((map (make-sparse-keymap))
2177 (vmap (make-sparse-keymap)))
2178 (define-key map "\C-xv" vmap)
2179 (define-key map "v" vmap)
2180 (set-keymap-parent vmap vc-prefix-map)
2181 (define-key vmap "t" 'vc-dired-toggle-terse-mode)
2182 map))
2183
2184 (define-derived-mode vc-dired-mode dired-mode "Dired under "
2185 "The major mode used in VC directory buffers.
2186
2187 It works like Dired, but lists only files under version control, with
2188 the current VC state of each file being indicated in the place of the
2189 file's link count, owner, group and size. Subdirectories are also
2190 listed, and you may insert them into the buffer as desired, like in
2191 Dired.
2192
2193 All Dired commands operate normally, with the exception of `v', which
2194 is redefined as the version control prefix, so that you can type
2195 `vl', `v=' etc. to invoke `vc-print-log', `vc-diff', and the like on
2196 the file named in the current Dired buffer line. `vv' invokes
2197 `vc-next-action' on this file, or on all files currently marked.
2198 There is a special command, `*l', to mark all files currently locked."
2199 ;; define-derived-mode does it for us in Emacs-21, but not in Emacs-20.
2200 ;; We do it here because dired might not be loaded yet
2201 ;; when vc-dired-mode-map is initialized.
2202 (set-keymap-parent vc-dired-mode-map dired-mode-map)
2203 (add-hook 'dired-after-readin-hook 'vc-dired-hook nil t)
2204 ;; The following is slightly modified from files.el,
2205 ;; because file lines look a bit different in vc-dired-mode
2206 ;; (the column before the date does not end in a digit).
2207 ;; albinus: It should be done in the original declaration. Problem
2208 ;; is the optional empty state-info; otherwise ")" would be good
2209 ;; enough as delimeter.
2210 (set (make-local-variable 'directory-listing-before-filename-regexp)
2211 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
2212 ;; In some locales, month abbreviations are as short as 2 letters,
2213 ;; and they can be followed by ".".
2214 (month (concat l l "+\\.?"))
2215 (s " ")
2216 (yyyy "[0-9][0-9][0-9][0-9]")
2217 (dd "[ 0-3][0-9]")
2218 (HH:MM "[ 0-2][0-9]:[0-5][0-9]")
2219 (seconds "[0-6][0-9]\\([.,][0-9]+\\)?")
2220 (zone "[-+][0-2][0-9][0-5][0-9]")
2221 (iso-mm-dd "[01][0-9]-[0-3][0-9]")
2222 (iso-time (concat HH:MM "\\(:" seconds "\\( ?" zone "\\)?\\)?"))
2223 (iso (concat "\\(\\(" yyyy "-\\)?" iso-mm-dd "[ T]" iso-time
2224 "\\|" yyyy "-" iso-mm-dd "\\)"))
2225 (western (concat "\\(" month s "+" dd "\\|" dd "\\.?" s month "\\)"
2226 s "+"
2227 "\\(" HH:MM "\\|" yyyy "\\)"))
2228 (western-comma (concat month s "+" dd "," s "+" yyyy))
2229 ;; Japanese MS-Windows ls-lisp has one-digit months, and
2230 ;; omits the Kanji characters after month and day-of-month.
2231 (mm "[ 0-1]?[0-9]")
2232 (japanese
2233 (concat mm l "?" s dd l "?" s "+"
2234 "\\(" HH:MM "\\|" yyyy l "?" "\\)")))
2235 ;; the .* below ensures that we find the last match on a line
2236 (concat ".*" s
2237 "\\(" western "\\|" western-comma "\\|" japanese "\\|" iso "\\)"
2238 s "+")))
2239 (and (boundp 'vc-dired-switches)
2240 vc-dired-switches
2241 (set (make-local-variable 'dired-actual-switches)
2242 vc-dired-switches))
2243 (set (make-local-variable 'vc-dired-terse-mode) vc-dired-terse-display)
2244 (let ((backend-name (symbol-name (vc-responsible-backend
2245 default-directory))))
2246 (setq mode-name (concat mode-name backend-name))
2247 ;; Add menu after `vc-dired-mode-map' has `dired-mode-map' as the parent.
2248 (let ((vc-dire-menu-map (copy-keymap vc-menu-map)))
2249 (define-key-after (lookup-key vc-dired-mode-map [menu-bar]) [vc]
2250 (cons backend-name vc-dire-menu-map) 'subdir)))
2251 (setq vc-dired-mode t))
2252
2253 (defun vc-dired-toggle-terse-mode ()
2254 "Toggle terse display in VC Dired."
2255 (interactive)
2256 (if (not vc-dired-mode)
2257 nil
2258 (setq vc-dired-terse-mode (not vc-dired-terse-mode))
2259 (if vc-dired-terse-mode
2260 (vc-dired-hook)
2261 (revert-buffer))))
2262
2263 (defun vc-dired-mark-locked ()
2264 "Mark all files currently locked."
2265 (interactive)
2266 (dired-mark-if (let ((f (dired-get-filename nil t)))
2267 (and f
2268 (not (file-directory-p f))
2269 (not (vc-up-to-date-p f))))
2270 "locked file"))
2271
2272 (define-key vc-dired-mode-map "*l" 'vc-dired-mark-locked)
2273
2274 (defun vc-dired-reformat-line (vc-info)
2275 "Reformat a directory-listing line.
2276 Replace various columns with version control information, VC-INFO.
2277 This code, like dired, assumes UNIX -l format."
2278 (beginning-of-line)
2279 (when (re-search-forward
2280 ;; Match link count, owner, group, size. Group may be missing,
2281 ;; and only the size is present in OS/2 -l format.
2282 "^..[drwxlts-]+ \\( *[0-9]+\\( [^ ]+ +\\([^ ]+ +\\)?[0-9]+\\)?\\) "
2283 (line-end-position) t)
2284 (replace-match (substring (concat vc-info " ") 0 10)
2285 t t nil 1)))
2286
2287 (defun vc-dired-hook ()
2288 "Reformat the listing according to version control.
2289 Called by dired after any portion of a vc-dired buffer has been read in."
2290 (message "Getting version information... ")
2291 (let (subdir filename (inhibit-read-only t))
2292 (goto-char (point-min))
2293 (while (not (eobp))
2294 (cond
2295 ;; subdir header line
2296 ((setq subdir (dired-get-subdir))
2297 ;; if the backend supports it, get the state
2298 ;; of all files in this directory at once
2299 (let ((backend (vc-responsible-backend subdir)))
2300 ;; check `backend' can really handle `subdir'.
2301 (if (and (vc-call-backend backend 'responsible-p subdir)
2302 (vc-find-backend-function backend 'dir-state))
2303 (vc-call-backend backend 'dir-state subdir)))
2304 (forward-line 1)
2305 ;; erase (but don't remove) the "total" line
2306 (delete-region (point) (line-end-position))
2307 (beginning-of-line)
2308 (forward-line 1))
2309 ;; file line
2310 ((setq filename (dired-get-filename nil t))
2311 (cond
2312 ;; subdir
2313 ((file-directory-p filename)
2314 (cond
2315 ((member (file-name-nondirectory filename)
2316 vc-directory-exclusion-list)
2317 (let ((pos (point)))
2318 (dired-kill-tree filename)
2319 (goto-char pos)
2320 (dired-kill-line)))
2321 (vc-dired-terse-mode
2322 ;; Don't show directories in terse mode. Don't use
2323 ;; dired-kill-line to remove it, because in recursive listings,
2324 ;; that would remove the directory contents as well.
2325 (delete-region (line-beginning-position)
2326 (progn (forward-line 1) (point))))
2327 ((string-match "\\`\\.\\.?\\'" (file-name-nondirectory filename))
2328 (dired-kill-line))
2329 (t
2330 (vc-dired-reformat-line nil)
2331 (forward-line 1))))
2332 ;; ordinary file
2333 ((and (vc-backend filename)
2334 (not (and vc-dired-terse-mode
2335 (vc-up-to-date-p filename))))
2336 (vc-dired-reformat-line (vc-call dired-state-info filename))
2337 (forward-line 1))
2338 (t
2339 (dired-kill-line))))
2340 ;; any other line
2341 (t (forward-line 1))))
2342 (vc-dired-purge))
2343 (message "Getting version information... done")
2344 (save-restriction
2345 (widen)
2346 (cond ((eq (count-lines (point-min) (point-max)) 1)
2347 (goto-char (point-min))
2348 (message "No files locked under %s" default-directory)))))
2349
2350 (defun vc-dired-purge ()
2351 "Remove empty subdirs."
2352 (goto-char (point-min))
2353 (while (dired-get-subdir)
2354 (forward-line 2)
2355 (if (dired-get-filename nil t)
2356 (if (not (dired-next-subdir 1 t))
2357 (goto-char (point-max)))
2358 (forward-line -2)
2359 (if (not (string= (dired-current-directory) default-directory))
2360 (dired-do-kill-lines t "")
2361 ;; We cannot remove the top level directory.
2362 ;; Just make it look a little nicer.
2363 (forward-line 1)
2364 (or (eobp) (kill-line))
2365 (if (not (dired-next-subdir 1 t))
2366 (goto-char (point-max))))))
2367 (goto-char (point-min)))
2368
2369 (defun vc-dired-buffers-for-dir (dir)
2370 "Return a list of all vc-dired buffers that currently display DIR."
2371 (let (result)
2372 ;; Check whether dired is loaded.
2373 (when (fboundp 'dired-buffers-for-dir)
2374 (dolist (buffer (dired-buffers-for-dir dir))
2375 (with-current-buffer buffer
2376 (if vc-dired-mode
2377 (push buffer result)))))
2378 (nreverse result)))
2379
2380 (defun vc-dired-resynch-file (file)
2381 "Update the entries for FILE in any VC Dired buffers that list it."
2382 (let ((buffers (vc-dired-buffers-for-dir (file-name-directory file))))
2383 (when buffers
2384 (mapcar (lambda (buffer)
2385 (with-current-buffer buffer
2386 (if (dired-goto-file file)
2387 ;; bind vc-dired-terse-mode to nil so that
2388 ;; files won't vanish when they are checked in
2389 (let ((vc-dired-terse-mode nil))
2390 (dired-do-redisplay 1)))))
2391 buffers))))
2392
2393 ;;;###autoload
2394 (defun vc-directory (dir read-switches)
2395 "Create a buffer in VC Dired Mode for directory DIR.
2396
2397 See Info node `VC Dired Mode'.
2398
2399 With prefix arg READ-SWITCHES, specify a value to override
2400 `dired-listing-switches' when generating the listing."
2401 (interactive "DDired under VC (directory): \nP")
2402 (let ((vc-dired-switches (concat vc-dired-listing-switches
2403 (if vc-dired-recurse "R" ""))))
2404 (if (eq (string-match tramp-file-name-regexp dir) 0)
2405 (error "Sorry, vc-directory does not work over Tramp"))
2406 (if read-switches
2407 (setq vc-dired-switches
2408 (read-string "Dired listing switches: "
2409 vc-dired-switches)))
2410 (require 'dired)
2411 (require 'dired-aux)
2412 (switch-to-buffer
2413 (dired-internal-noselect (expand-file-name (file-name-as-directory dir))
2414 vc-dired-switches
2415 'vc-dired-mode))))
2416
2417
2418 ;; Named-configuration entry points
2419
2420 (defun vc-snapshot-precondition (dir)
2421 "Scan the tree below DIR, looking for files not up-to-date.
2422 If any file is not up-to-date, return the name of the first such file.
2423 \(This means, neither snapshot creation nor retrieval is allowed.\)
2424 If one or more of the files are currently visited, return `visited'.
2425 Otherwise, return nil."
2426 (let ((status nil))
2427 (catch 'vc-locked-example
2428 (vc-file-tree-walk
2429 dir
2430 (lambda (f)
2431 (if (not (vc-up-to-date-p f)) (throw 'vc-locked-example f)
2432 (if (get-file-buffer f) (setq status 'visited)))))
2433 status)))
2434
2435 ;;;###autoload
2436 (defun vc-create-snapshot (dir name branchp)
2437 "Descending recursively from DIR, make a snapshot called NAME.
2438 For each registered file, the working revision becomes part of
2439 the named configuration. If the prefix argument BRANCHP is
2440 given, the snapshot is made as a new branch and the files are
2441 checked out in that new branch."
2442 (interactive
2443 (list (read-file-name "Directory: " default-directory default-directory t)
2444 (read-string "New snapshot name: ")
2445 current-prefix-arg))
2446 (message "Making %s... " (if branchp "branch" "snapshot"))
2447 (if (file-directory-p dir) (setq dir (file-name-as-directory dir)))
2448 (vc-call-backend (vc-responsible-backend dir)
2449 'create-snapshot dir name branchp)
2450 (message "Making %s... done" (if branchp "branch" "snapshot")))
2451
2452 ;;;###autoload
2453 (defun vc-retrieve-snapshot (dir name)
2454 "Descending recursively from DIR, retrieve the snapshot called NAME.
2455 If NAME is empty, it refers to the latest revisions.
2456 If locking is used for the files in DIR, then there must not be any
2457 locked files at or below DIR (but if NAME is empty, locked files are
2458 allowed and simply skipped)."
2459 (interactive
2460 (list (read-file-name "Directory: " default-directory default-directory t)
2461 (read-string "Snapshot name to retrieve (default latest revisions): ")))
2462 (let ((update (yes-or-no-p "Update any affected buffers? "))
2463 (msg (if (or (not name) (string= name ""))
2464 (format "Updating %s... " (abbreviate-file-name dir))
2465 (format "Retrieving snapshot into %s... "
2466 (abbreviate-file-name dir)))))
2467 (message "%s" msg)
2468 (vc-call-backend (vc-responsible-backend dir)
2469 'retrieve-snapshot dir name update)
2470 (message "%s" (concat msg "done"))))
2471
2472 ;; Miscellaneous other entry points
2473
2474 ;;;###autoload
2475 (defun vc-print-log (&optional working-revision)
2476 "List the change log of the current fileset in a window.
2477 If WORKING-REVISION is non-nil, leave the point at that revision."
2478 (interactive)
2479 (let* ((files (vc-deduce-fileset))
2480 (backend (vc-backend files))
2481 (working-revision (or working-revision (vc-working-revision (car files)))))
2482 ;; Don't switch to the output buffer before running the command,
2483 ;; so that any buffer-local settings in the vc-controlled
2484 ;; buffer can be accessed by the command.
2485 (vc-call-backend backend 'print-log files "*vc-change-log*")
2486 (pop-to-buffer "*vc-change-log*")
2487 (vc-exec-after
2488 `(let ((inhibit-read-only t))
2489 (vc-call-backend ',backend 'log-view-mode)
2490 (goto-char (point-max)) (forward-line -1)
2491 (while (looking-at "=*\n")
2492 (delete-char (- (match-end 0) (match-beginning 0)))
2493 (forward-line -1))
2494 (goto-char (point-min))
2495 (if (looking-at "[\b\t\n\v\f\r ]+")
2496 (delete-char (- (match-end 0) (match-beginning 0))))
2497 (shrink-window-if-larger-than-buffer)
2498 ;; move point to the log entry for the working revision
2499 (vc-call-backend ',backend 'show-log-entry ',working-revision)
2500 (setq vc-sentinel-movepoint (point))
2501 (set-buffer-modified-p nil)))))
2502
2503 ;;;###autoload
2504 (defun vc-revert ()
2505 "Revert working copies of the selected fileset to their repository contents.
2506 This asks for confirmation if the buffer contents are not identical
2507 to the working revision (except for keyword expansion)."
2508 (interactive)
2509 (let* ((files (vc-deduce-fileset)))
2510 ;; If any of the files is visited by the current buffer, make
2511 ;; sure buffer is saved. If the user says `no', abort since
2512 ;; we cannot show the changes and ask for confirmation to
2513 ;; discard them.
2514 (if (or (not files) (memq (buffer-file-name) files))
2515 (vc-buffer-sync nil))
2516 (dolist (file files)
2517 (let ((buf (get-file-buffer file)))
2518 (if (and buf (buffer-modified-p buf))
2519 (error "Please kill or save all modified buffers before reverting.")))
2520 (if (vc-up-to-date-p file)
2521 (unless (yes-or-no-p (format "%s seems up-to-date. Revert anyway? " file))
2522 (error "Revert canceled"))))
2523 (if (vc-diff-internal vc-allow-async-revert files nil nil)
2524 (progn
2525 (unless (yes-or-no-p (format "Discard changes in %s? " (vc-delistify files)))
2526 (error "Revert canceled"))
2527 (delete-windows-on "*vc-diff*")
2528 (kill-buffer "*vc-diff*")))
2529 (dolist (file files)
2530 (progn
2531 (message "Reverting %s..." (vc-delistify files))
2532 (vc-revert-file file)
2533 (message "Reverting %s...done" (vc-delistify files))))))
2534
2535 ;;;###autoload
2536 (defun vc-rollback ()
2537 "Roll back (remove) the most recent changeset committed to the repository.
2538 This may be either a file-level or a repository-level operation,
2539 depending on the underlying version-control system."
2540 (interactive)
2541 (let* ((files (vc-deduce-fileset))
2542 (backend (vc-backend files))
2543 (granularity (vc-call-backend backend 'revision-granularity)))
2544 (unless (vc-find-backend-function backend 'rollback)
2545 (error "Rollback is not supported in %s" backend))
2546 (if (and (not (eq granularity 'repository)) (/= (length files) 1))
2547 (error "Rollback requires a singleton fileset or repository versioning"))
2548 (if (not (vc-call latest-on-branch-p (car files)))
2549 (error "Rollback is only possible at the tip revision."))
2550 ;; If any of the files is visited by the current buffer, make
2551 ;; sure buffer is saved. If the user says `no', abort since
2552 ;; we cannot show the changes and ask for confirmation to
2553 ;; discard them.
2554 (if (or (not files) (memq (buffer-file-name) files))
2555 (vc-buffer-sync nil))
2556 (dolist (file files)
2557 (if (buffer-modified-p (get-file-buffer file))
2558 (error "Please kill or save all modified buffers before rollback."))
2559 (if (not (vc-up-to-date-p file))
2560 (error "Please revert all modified workfiles before rollback.")))
2561 ;; Accumulate changes associated with the fileset
2562 (vc-setup-buffer "*vc-diff*")
2563 (not-modified)
2564 (message "Finding changes...")
2565 (let* ((tip (vc-working-revision (car files)))
2566 (previous (vc-call previous-revision (car files) tip)))
2567 (vc-diff-internal nil files previous tip))
2568 ;; Display changes
2569 (unless (yes-or-no-p "Discard these revisions? ")
2570 (error "Rollback canceled"))
2571 (delete-windows-on "*vc-diff*")
2572 (kill-buffer"*vc-diff*")
2573 ;; Do the actual reversions
2574 (message "Rolling back %s..." (vc-delistify files))
2575 (with-vc-properties
2576 files
2577 (vc-call-backend backend 'rollback files)
2578 `((vc-state . ,'up-to-date)
2579 (vc-checkout-time . , (nth 5 (file-attributes file)))
2580 (vc-working-revision . nil)))
2581 (dolist (f files) (vc-resynch-buffer f t t))
2582 (message "Rolling back %s...done" (vc-delistify files))))
2583
2584 ;;;###autoload
2585 (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1")
2586
2587 ;;;###autoload
2588 (defun vc-update ()
2589 "Update the current fileset's files to their tip revisions.
2590 For each one that contains no changes, and is not locked, then this simply
2591 replaces the work file with the latest revision on its branch. If the file
2592 contains changes, and the backend supports merging news, then any recent
2593 changes from the current branch are merged into the working file."
2594 (interactive)
2595 (dolist (file (vc-deduce-fileset))
2596 (if (buffer-modified-p (get-file-buffer file))
2597 (error "Please kill or save all modified buffers before updating."))
2598 (if (vc-up-to-date-p file)
2599 (vc-checkout file nil "")
2600 (if (eq (vc-checkout-model file) 'locking)
2601 (if (eq (vc-state file) 'edited)
2602 (error
2603 (substitute-command-keys
2604 "File is locked--type \\[vc-revert] to discard changes"))
2605 (error
2606 (substitute-command-keys
2607 "Unexpected file state (%s)--type \\[vc-next-action] to correct")
2608 (vc-state file)))
2609 (if (not (vc-find-backend-function (vc-backend file) 'merge-news))
2610 (error "Sorry, merging news is not implemented for %s"
2611 (vc-backend file))
2612 (vc-call merge-news file)
2613 (vc-resynch-buffer file t t))))))
2614
2615 (defun vc-version-backup-file (file &optional rev)
2616 "Return name of backup file for revision REV of FILE.
2617 If version backups should be used for FILE, and there exists
2618 such a backup for REV or the working revision of file, return
2619 its name; otherwise return nil."
2620 (when (vc-call make-version-backups-p file)
2621 (let ((backup-file (vc-version-backup-file-name file rev)))
2622 (if (file-exists-p backup-file)
2623 backup-file
2624 ;; there is no automatic backup, but maybe the user made one manually
2625 (setq backup-file (vc-version-backup-file-name file rev 'manual))
2626 (if (file-exists-p backup-file)
2627 backup-file)))))
2628
2629 (defun vc-revert-file (file)
2630 "Revert FILE back to the repository working revision it was based on."
2631 (with-vc-properties
2632 (list file)
2633 (let ((backup-file (vc-version-backup-file file)))
2634 (when backup-file
2635 (copy-file backup-file file 'ok-if-already-exists 'keep-date)
2636 (vc-delete-automatic-version-backups file))
2637 (vc-call revert file backup-file))
2638 `((vc-state . up-to-date)
2639 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
2640 (vc-resynch-buffer file t t))
2641
2642 ;;;###autoload
2643 (defun vc-switch-backend (file backend)
2644 "Make BACKEND the current version control system for FILE.
2645 FILE must already be registered in BACKEND. The change is not
2646 permanent, only for the current session. This function only changes
2647 VC's perspective on FILE, it does not register or unregister it.
2648 By default, this command cycles through the registered backends.
2649 To get a prompt, use a prefix argument."
2650 (interactive
2651 (list
2652 (or buffer-file-name
2653 (error "There is no version-controlled file in this buffer"))
2654 (let ((backend (vc-backend buffer-file-name))
2655 (backends nil))
2656 (unless backend
2657 (error "File %s is not under version control" buffer-file-name))
2658 ;; Find the registered backends.
2659 (dolist (backend vc-handled-backends)
2660 (when (vc-call-backend backend 'registered buffer-file-name)
2661 (push backend backends)))
2662 ;; Find the next backend.
2663 (let ((def (car (delq backend (append (memq backend backends) backends))))
2664 (others (delete backend backends)))
2665 (cond
2666 ((null others) (error "No other backend to switch to"))
2667 (current-prefix-arg
2668 (intern
2669 (upcase
2670 (completing-read
2671 (format "Switch to backend [%s]: " def)
2672 (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends)
2673 nil t nil nil (downcase (symbol-name def))))))
2674 (t def))))))
2675 (unless (eq backend (vc-backend file))
2676 (vc-file-clearprops file)
2677 (vc-file-setprop file 'vc-backend backend)
2678 ;; Force recomputation of the state
2679 (unless (vc-call-backend backend 'registered file)
2680 (vc-file-clearprops file)
2681 (error "%s is not registered in %s" file backend))
2682 (vc-mode-line file)))
2683
2684 ;;;###autoload
2685 (defun vc-transfer-file (file new-backend)
2686 "Transfer FILE to another version control system NEW-BACKEND.
2687 If NEW-BACKEND has a higher precedence than FILE's current backend
2688 \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
2689 NEW-BACKEND, using the revision number from the current backend as the
2690 base level. If NEW-BACKEND has a lower precedence than the current
2691 backend, then commit all changes that were made under the current
2692 backend to NEW-BACKEND, and unregister FILE from the current backend.
2693 \(If FILE is not yet registered under NEW-BACKEND, register it.)"
2694 (let* ((old-backend (vc-backend file))
2695 (edited (memq (vc-state file) '(edited needs-merge)))
2696 (registered (vc-call-backend new-backend 'registered file))
2697 (move
2698 (and registered ; Never move if not registered in new-backend yet.
2699 ;; move if new-backend comes later in vc-handled-backends
2700 (or (memq new-backend (memq old-backend vc-handled-backends))
2701 (y-or-n-p "Final transfer? "))))
2702 (comment nil))
2703 (if (eq old-backend new-backend)
2704 (error "%s is the current backend of %s" new-backend file))
2705 (if registered
2706 (set-file-modes file (logior (file-modes file) 128))
2707 ;; `registered' might have switched under us.
2708 (vc-switch-backend file old-backend)
2709 (let* ((rev (vc-working-revision file))
2710 (modified-file (and edited (make-temp-file file)))
2711 (unmodified-file (and modified-file (vc-version-backup-file file))))
2712 ;; Go back to the base unmodified file.
2713 (unwind-protect
2714 (progn
2715 (when modified-file
2716 (copy-file file modified-file 'ok-if-already-exists)
2717 ;; If we have a local copy of the unmodified file, handle that
2718 ;; here and not in vc-revert-file because we don't want to
2719 ;; delete that copy -- it is still useful for OLD-BACKEND.
2720 (if unmodified-file
2721 (copy-file unmodified-file file
2722 'ok-if-already-exists 'keep-date)
2723 (if (y-or-n-p "Get base revision from master? ")
2724 (vc-revert-file file))))
2725 (vc-call-backend new-backend 'receive-file file rev))
2726 (when modified-file
2727 (vc-switch-backend file new-backend)
2728 (unless (eq (vc-checkout-model file) 'implicit)
2729 (vc-checkout file t nil))
2730 (rename-file modified-file file 'ok-if-already-exists)
2731 (vc-file-setprop file 'vc-checkout-time nil)))))
2732 (when move
2733 (vc-switch-backend file old-backend)
2734 (setq comment (vc-call comment-history file))
2735 (vc-call unregister file))
2736 (vc-switch-backend file new-backend)
2737 (when (or move edited)
2738 (vc-file-setprop file 'vc-state 'edited)
2739 (vc-mode-line file)
2740 (vc-checkin file nil comment (stringp comment)))))
2741
2742 (defun vc-rename-master (oldmaster newfile templates)
2743 "Rename OLDMASTER to be the master file for NEWFILE based on TEMPLATES."
2744 (let* ((dir (file-name-directory (expand-file-name oldmaster)))
2745 (newdir (or (file-name-directory newfile) ""))
2746 (newbase (file-name-nondirectory newfile))
2747 (masters
2748 ;; List of potential master files for `newfile'
2749 (mapcar
2750 (lambda (s) (vc-possible-master s newdir newbase))
2751 templates)))
2752 (if (or (file-symlink-p oldmaster)
2753 (file-symlink-p (file-name-directory oldmaster)))
2754 (error "This is unsafe in the presence of symbolic links"))
2755 (rename-file
2756 oldmaster
2757 (catch 'found
2758 ;; If possible, keep the master file in the same directory.
2759 (dolist (f masters)
2760 (if (and f (string= (file-name-directory (expand-file-name f)) dir))
2761 (throw 'found f)))
2762 ;; If not, just use the first possible place.
2763 (dolist (f masters)
2764 (and f (or (not (setq dir (file-name-directory f)))
2765 (file-directory-p dir))
2766 (throw 'found f)))
2767 (error "New file lacks a version control directory")))))
2768
2769 (defun vc-delete-file (file)
2770 "Delete file and mark it as such in the version control system."
2771 (interactive "fVC delete file: ")
2772 (let ((buf (get-file-buffer file))
2773 (backend (vc-backend file)))
2774 (unless backend
2775 (error "File %s is not under version control"
2776 (file-name-nondirectory file)))
2777 (unless (vc-find-backend-function backend 'delete-file)
2778 (error "Deleting files under %s is not supported in VC" backend))
2779 (if (and buf (buffer-modified-p buf))
2780 (error "Please save files before deleting them"))
2781 (unless (y-or-n-p (format "Really want to delete %s? "
2782 (file-name-nondirectory file)))
2783 (error "Abort!"))
2784 (unless (or (file-directory-p file) (null make-backup-files))
2785 (with-current-buffer (or buf (find-file-noselect file))
2786 (let ((backup-inhibited nil))
2787 (backup-buffer))))
2788 (vc-call delete-file file)
2789 ;; If the backend hasn't deleted the file itself, let's do it for him.
2790 (if (file-exists-p file) (delete-file file))))
2791
2792 ;;;###autoload
2793 (defun vc-rename-file (old new)
2794 "Rename file OLD to NEW, and rename its master file likewise."
2795 (interactive "fVC rename file: \nFRename to: ")
2796 (let ((oldbuf (get-file-buffer old)))
2797 (if (and oldbuf (buffer-modified-p oldbuf))
2798 (error "Please save files before moving them"))
2799 (if (get-file-buffer new)
2800 (error "Already editing new file name"))
2801 (if (file-exists-p new)
2802 (error "New file already exists"))
2803 (let ((state (vc-state old)))
2804 (unless (memq state '(up-to-date edited))
2805 (error "Please %s files before moving them"
2806 (if (stringp state) "check in" "update"))))
2807 (vc-call rename-file old new)
2808 (vc-file-clearprops old)
2809 ;; Move the actual file (unless the backend did it already)
2810 (if (file-exists-p old) (rename-file old new))
2811 ;; ?? Renaming a file might change its contents due to keyword expansion.
2812 ;; We should really check out a new copy if the old copy was precisely equal
2813 ;; to some checked-in revision. However, testing for this is tricky....
2814 (if oldbuf
2815 (with-current-buffer oldbuf
2816 (let ((buffer-read-only buffer-read-only))
2817 (set-visited-file-name new))
2818 (vc-backend new)
2819 (vc-mode-line new)
2820 (set-buffer-modified-p nil)))))
2821
2822 ;;;###autoload
2823 (defun vc-update-change-log (&rest args)
2824 "Find change log file and add entries from recent version control logs.
2825 Normally, find log entries for all registered files in the default
2826 directory.
2827
2828 With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
2829
2830 With any numeric prefix arg, find log entries for all currently visited
2831 files that are under version control. This puts all the entries in the
2832 log for the default directory, which may not be appropriate.
2833
2834 From a program, any ARGS are assumed to be filenames for which
2835 log entries should be gathered."
2836 (interactive
2837 (cond ((consp current-prefix-arg) ;C-u
2838 (list buffer-file-name))
2839 (current-prefix-arg ;Numeric argument.
2840 (let ((files nil)
2841 (buffers (buffer-list))
2842 file)
2843 (while buffers
2844 (setq file (buffer-file-name (car buffers)))
2845 (and file (vc-backend file)
2846 (setq files (cons file files)))
2847 (setq buffers (cdr buffers)))
2848 files))
2849 (t
2850 ;; Don't supply any filenames to backend; this means
2851 ;; it should find all relevant files relative to
2852 ;; the default-directory.
2853 nil)))
2854 (dolist (file (or args (list default-directory)))
2855 (if (eq (string-match tramp-file-name-regexp file) 0)
2856 (error "Sorry, vc-update-change-log does not work over Tramp")))
2857 (vc-call-backend (vc-responsible-backend default-directory)
2858 'update-changelog args))
2859
2860 ;;; The default back end. Assumes RCS-like revision numbering.
2861
2862 (defun vc-default-revision-granularity ()
2863 (error "Your backend will not work with this version of VC mode."))
2864
2865 ;; functions that operate on RCS revision numbers. This code should
2866 ;; also be moved into the backends. It stays for now, however, since
2867 ;; it is used in code below.
2868 ;;;###autoload
2869 (defun vc-trunk-p (rev)
2870 "Return t if REV is a revision on the trunk."
2871 (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))
2872
2873 (defun vc-branch-p (rev)
2874 "Return t if REV is a branch revision."
2875 (not (eq nil (string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev))))
2876
2877 ;;;###autoload
2878 (defun vc-branch-part (rev)
2879 "Return the branch part of a revision number REV."
2880 (let ((index (string-match "\\.[0-9]+\\'" rev)))
2881 (if index
2882 (substring rev 0 index))))
2883
2884 (defun vc-minor-part (rev)
2885 "Return the minor revision number of a revision number REV."
2886 (string-match "[0-9]+\\'" rev)
2887 (substring rev (match-beginning 0) (match-end 0)))
2888
2889 (defun vc-default-previous-revision (backend file rev)
2890 "Return the revision number immediately preceding REV for FILE,
2891 or nil if there is no previous revision. This default
2892 implementation works for MAJOR.MINOR-style revision numbers as
2893 used by RCS and CVS."
2894 (let ((branch (vc-branch-part rev))
2895 (minor-num (string-to-number (vc-minor-part rev))))
2896 (when branch
2897 (if (> minor-num 1)
2898 ;; revision does probably not start a branch or release
2899 (concat branch "." (number-to-string (1- minor-num)))
2900 (if (vc-trunk-p rev)
2901 ;; we are at the beginning of the trunk --
2902 ;; don't know anything to return here
2903 nil
2904 ;; we are at the beginning of a branch --
2905 ;; return revision of starting point
2906 (vc-branch-part branch))))))
2907
2908 (defun vc-default-next-revision (backend file rev)
2909 "Return the revision number immediately following REV for FILE,
2910 or nil if there is no next revision. This default implementation
2911 works for MAJOR.MINOR-style revision numbers as used by RCS
2912 and CVS."
2913 (when (not (string= rev (vc-working-revision file)))
2914 (let ((branch (vc-branch-part rev))
2915 (minor-num (string-to-number (vc-minor-part rev))))
2916 (concat branch "." (number-to-string (1+ minor-num))))))
2917
2918 (defun vc-default-responsible-p (backend file)
2919 "Indicate whether BACKEND is reponsible for FILE.
2920 The default is to return nil always."
2921 nil)
2922
2923 (defun vc-default-could-register (backend file)
2924 "Return non-nil if BACKEND could be used to register FILE.
2925 The default implementation returns t for all files."
2926 t)
2927
2928 (defun vc-default-latest-on-branch-p (backend file)
2929 "Return non-nil if FILE is the latest on its branch.
2930 This default implementation always returns non-nil, which means that
2931 editing non-current revisions is not supported by default."
2932 t)
2933
2934 (defun vc-default-init-revision (backend) vc-default-init-revision)
2935
2936 (defalias 'vc-cvs-update-changelog 'vc-update-changelog-rcs2log)
2937 (defalias 'vc-rcs-update-changelog 'vc-update-changelog-rcs2log)
2938 ;; FIXME: This should probably be moved to vc-rcs.el and replaced in
2939 ;; vc-cvs.el by code using cvs2cl.
2940 (defun vc-update-changelog-rcs2log (files)
2941 "Default implementation of update-changelog.
2942 Uses `rcs2log' which only works for RCS and CVS."
2943 ;; FIXME: We (c|sh)ould add support for cvs2cl
2944 (let ((odefault default-directory)
2945 (changelog (find-change-log))
2946 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
2947 (tempfile (make-temp-file
2948 (expand-file-name "vc"
2949 (or small-temporary-file-directory
2950 temporary-file-directory))))
2951 (login-name (or user-login-name
2952 (format "uid%d" (number-to-string (user-uid)))))
2953 (full-name (or add-log-full-name
2954 (user-full-name)
2955 (user-login-name)
2956 (format "uid%d" (number-to-string (user-uid)))))
2957 (mailing-address (or add-log-mailing-address
2958 user-mail-address)))
2959 (find-file-other-window changelog)
2960 (barf-if-buffer-read-only)
2961 (vc-buffer-sync)
2962 (undo-boundary)
2963 (goto-char (point-min))
2964 (push-mark)
2965 (message "Computing change log entries...")
2966 (message "Computing change log entries... %s"
2967 (unwind-protect
2968 (progn
2969 (setq default-directory odefault)
2970 (if (eq 0 (apply 'call-process
2971 (expand-file-name "rcs2log"
2972 exec-directory)
2973 nil (list t tempfile) nil
2974 "-c" changelog
2975 "-u" (concat login-name
2976 "\t" full-name
2977 "\t" mailing-address)
2978 (mapcar
2979 (lambda (f)
2980 (file-relative-name
2981 (expand-file-name f odefault)))
2982 files)))
2983 "done"
2984 (pop-to-buffer (get-buffer-create "*vc*"))
2985 (erase-buffer)
2986 (insert-file-contents tempfile)
2987 "failed"))
2988 (setq default-directory (file-name-directory changelog))
2989 (delete-file tempfile)))))
2990
2991 (defun vc-default-find-revision (backend file rev buffer)
2992 "Provide the new `find-revision' op based on the old `checkout' op.
2993 This is only for compatibility with old backends. They should be updated
2994 to provide the `find-revision' operation instead."
2995 (let ((tmpfile (make-temp-file (expand-file-name file))))
2996 (unwind-protect
2997 (progn
2998 (vc-call-backend backend 'checkout file nil rev tmpfile)
2999 (with-current-buffer buffer
3000 (insert-file-contents-literally tmpfile)))
3001 (delete-file tmpfile))))
3002
3003 (defun vc-default-dired-state-info (backend file)
3004 (let* ((state (vc-state file))
3005 (statestring
3006 (cond
3007 ((stringp state) (concat "(" state ")"))
3008 ((eq state 'edited) (concat "(" (vc-user-login-name file) ")"))
3009 ((eq state 'needs-merge) "(merge)")
3010 ((eq state 'needs-patch) "(patch)")
3011 ((eq state 'unlocked-changes) "(stale)")))
3012 (buffer
3013 (get-file-buffer file))
3014 (modflag
3015 (if (and buffer (buffer-modified-p buffer)) "+" "")))
3016 (concat statestring modflag)))
3017
3018 (defun vc-default-rename-file (backend old new)
3019 (condition-case nil
3020 (add-name-to-file old new)
3021 (error (rename-file old new)))
3022 (vc-delete-file old)
3023 (with-current-buffer (find-file-noselect new)
3024 (vc-register)))
3025
3026 (defalias 'vc-default-logentry-check 'ignore)
3027 (defalias 'vc-default-check-headers 'ignore)
3028
3029 (defun vc-default-log-view-mode (backend) (log-view-mode))
3030
3031 (defun vc-default-show-log-entry (backend rev)
3032 (with-no-warnings
3033 (log-view-goto-rev rev)))
3034
3035 (defun vc-default-comment-history (backend file)
3036 "Return a string with all log entries stored in BACKEND for FILE."
3037 (if (vc-find-backend-function backend 'print-log)
3038 (with-current-buffer "*vc*"
3039 (vc-call print-log (list file))
3040 (vc-call-backend backend 'wash-log)
3041 (buffer-string))))
3042
3043 (defun vc-default-receive-file (backend file rev)
3044 "Let BACKEND receive FILE from another version control system."
3045 (vc-call-backend backend 'register file rev ""))
3046
3047 (defun vc-default-create-snapshot (backend dir name branchp)
3048 (when branchp
3049 (error "VC backend %s does not support module branches" backend))
3050 (let ((result (vc-snapshot-precondition dir)))
3051 (if (stringp result)
3052 (error "File %s is not up-to-date" result)
3053 (vc-file-tree-walk
3054 dir
3055 (lambda (f)
3056 (vc-call assign-name f name))))))
3057
3058 (defun vc-default-retrieve-snapshot (backend dir name update)
3059 (if (string= name "")
3060 (progn
3061 (vc-file-tree-walk
3062 dir
3063 (lambda (f) (and
3064 (vc-up-to-date-p f)
3065 (vc-error-occurred
3066 (vc-call checkout f nil "")
3067 (if update (vc-resynch-buffer f t t)))))))
3068 (let ((result (vc-snapshot-precondition dir)))
3069 (if (stringp result)
3070 (error "File %s is locked" result)
3071 (setq update (and (eq result 'visited) update))
3072 (vc-file-tree-walk
3073 dir
3074 (lambda (f) (vc-error-occurred
3075 (vc-call checkout f nil name)
3076 (if update (vc-resynch-buffer f t t)))))))))
3077
3078 (defun vc-default-revert (backend file contents-done)
3079 (unless contents-done
3080 (let ((rev (vc-working-revision file))
3081 (file-buffer (or (get-file-buffer file) (current-buffer))))
3082 (message "Checking out %s..." file)
3083 (let ((failed t)
3084 (backup-name (car (find-backup-file-name file))))
3085 (when backup-name
3086 (copy-file file backup-name 'ok-if-already-exists 'keep-date)
3087 (unless (file-writable-p file)
3088 (set-file-modes file (logior (file-modes file) 128))))
3089 (unwind-protect
3090 (let ((coding-system-for-read 'no-conversion)
3091 (coding-system-for-write 'no-conversion))
3092 (with-temp-file file
3093 (let ((outbuf (current-buffer)))
3094 ;; Change buffer to get local value of vc-checkout-switches.
3095 (with-current-buffer file-buffer
3096 (let ((default-directory (file-name-directory file)))
3097 (vc-call find-revision file rev outbuf)))))
3098 (setq failed nil))
3099 (when backup-name
3100 (if failed
3101 (rename-file backup-name file 'ok-if-already-exists)
3102 (and (not vc-make-backup-files) (delete-file backup-name))))))
3103 (message "Checking out %s...done" file))))
3104
3105 (defalias 'vc-default-revision-completion-table 'ignore)
3106
3107 (defun vc-check-headers ()
3108 "Check if the current file has any headers in it."
3109 (interactive)
3110 (vc-call-backend (vc-backend buffer-file-name) 'check-headers))
3111
3112 ;;; Annotate functionality
3113
3114 ;; Declare globally instead of additional parameter to
3115 ;; temp-buffer-show-function (not possible to pass more than one
3116 ;; parameter). The use of annotate-ratio is deprecated in favor of
3117 ;; annotate-mode, which replaces it with the more sensible "span-to
3118 ;; days", along with autoscaling support.
3119 (defvar vc-annotate-ratio nil "Global variable.")
3120
3121 ;; internal buffer-local variables
3122 (defvar vc-annotate-backend nil)
3123 (defvar vc-annotate-parent-file nil)
3124 (defvar vc-annotate-parent-rev nil)
3125 (defvar vc-annotate-parent-display-mode nil)
3126
3127 (defconst vc-annotate-font-lock-keywords
3128 ;; The fontification is done by vc-annotate-lines instead of font-lock.
3129 '((vc-annotate-lines)))
3130
3131 (define-derived-mode vc-annotate-mode fundamental-mode "Annotate"
3132 "Major mode for output buffers of the `vc-annotate' command.
3133
3134 You can use the mode-specific menu to alter the time-span of the used
3135 colors. See variable `vc-annotate-menu-elements' for customizing the
3136 menu items."
3137 (set (make-local-variable 'truncate-lines) t)
3138 (set (make-local-variable 'font-lock-defaults)
3139 '(vc-annotate-font-lock-keywords t))
3140 (view-mode 1))
3141
3142 (defun vc-annotate-display-default (ratio)
3143 "Display the output of \\[vc-annotate] using the default color range.
3144 The color range is given by `vc-annotate-color-map', scaled by RATIO.
3145 The current time is used as the offset."
3146 (interactive (progn (kill-local-variable 'vc-annotate-color-map) '(1.0)))
3147 (message "Redisplaying annotation...")
3148 (vc-annotate-display ratio)
3149 (message "Redisplaying annotation...done"))
3150
3151 (defun vc-annotate-oldest-in-map (color-map)
3152 "Return the oldest time in the COLOR-MAP."
3153 ;; Since entries should be sorted, we can just use the last one.
3154 (caar (last color-map)))
3155
3156 (defun vc-annotate-display-autoscale (&optional full)
3157 "Highlight the output of \\[vc-annotate] using an autoscaled color map.
3158 Autoscaling means that the map is scaled from the current time to the
3159 oldest annotation in the buffer, or, with prefix argument FULL, to
3160 cover the range from the oldest annotation to the newest."
3161 (interactive "P")
3162 (let ((newest 0.0)
3163 (oldest 999999.) ;Any CVS users at the founding of Rome?
3164 (current (vc-annotate-convert-time (current-time)))
3165 date)
3166 (message "Redisplaying annotation...")
3167 ;; Run through this file and find the oldest and newest dates annotated.
3168 (save-excursion
3169 (goto-char (point-min))
3170 (while (not (eobp))
3171 (when (setq date (vc-call-backend vc-annotate-backend 'annotate-time))
3172 (if (> date newest)
3173 (setq newest date))
3174 (if (< date oldest)
3175 (setq oldest date)))
3176 (forward-line 1)))
3177 (vc-annotate-display
3178 (/ (- (if full newest current) oldest)
3179 (vc-annotate-oldest-in-map vc-annotate-color-map))
3180 (if full newest))
3181 (message "Redisplaying annotation...done \(%s\)"
3182 (if full
3183 (format "Spanned from %.1f to %.1f days old"
3184 (- current oldest)
3185 (- current newest))
3186 (format "Spanned to %.1f days old" (- current oldest))))))
3187
3188 ;; Menu -- Using easymenu.el
3189 (easy-menu-define vc-annotate-mode-menu vc-annotate-mode-map
3190 "VC Annotate Display Menu"
3191 `("VC-Annotate"
3192 ["By Color Map Range" (unless (null vc-annotate-display-mode)
3193 (setq vc-annotate-display-mode nil)
3194 (vc-annotate-display-select))
3195 :style toggle :selected (null vc-annotate-display-mode)]
3196 ,@(let ((oldest-in-map (vc-annotate-oldest-in-map vc-annotate-color-map)))
3197 (mapcar (lambda (element)
3198 (let ((days (* element oldest-in-map)))
3199 `[,(format "Span %.1f days" days)
3200 (vc-annotate-display-select nil ,days)
3201 :style toggle :selected
3202 (eql vc-annotate-display-mode ,days) ]))
3203 vc-annotate-menu-elements))
3204 ["Span ..."
3205 (vc-annotate-display-select
3206 nil (float (string-to-number (read-string "Span how many days? "))))]
3207 "--"
3208 ["Span to Oldest"
3209 (unless (eq vc-annotate-display-mode 'scale)
3210 (vc-annotate-display-select nil 'scale))
3211 :style toggle :selected
3212 (eq vc-annotate-display-mode 'scale)]
3213 ["Span Oldest->Newest"
3214 (unless (eq vc-annotate-display-mode 'fullscale)
3215 (vc-annotate-display-select nil 'fullscale))
3216 :style toggle :selected
3217 (eq vc-annotate-display-mode 'fullscale)]
3218 "--"
3219 ["Annotate previous revision" vc-annotate-prev-revision]
3220 ["Annotate next revision" vc-annotate-next-revision]
3221 ["Annotate revision at line" vc-annotate-revision-at-line]
3222 ["Annotate revision previous to line" vc-annotate-revision-previous-to-line]
3223 ["Annotate latest revision" vc-annotate-working-revision]
3224 ["Show log of revision at line" vc-annotate-show-log-revision-at-line]
3225 ["Show diff of revision at line" vc-annotate-show-diff-revision-at-line]))
3226
3227 (defun vc-annotate-display-select (&optional buffer mode)
3228 "Highlight the output of \\[vc-annotate].
3229 By default, the current buffer is highlighted, unless overridden by
3230 BUFFER. `vc-annotate-display-mode' specifies the highlighting mode to
3231 use; you may override this using the second optional arg MODE."
3232 (interactive)
3233 (if mode (setq vc-annotate-display-mode mode))
3234 (pop-to-buffer (or buffer (current-buffer)))
3235 (cond ((null vc-annotate-display-mode)
3236 ;; The ratio is global, thus relative to the global color-map.
3237 (kill-local-variable 'vc-annotate-color-map)
3238 (vc-annotate-display-default (or vc-annotate-ratio 1.0)))
3239 ;; One of the auto-scaling modes
3240 ((eq vc-annotate-display-mode 'scale)
3241 (vc-exec-after `(vc-annotate-display-autoscale)))
3242 ((eq vc-annotate-display-mode 'fullscale)
3243 (vc-exec-after `(vc-annotate-display-autoscale t)))
3244 ((numberp vc-annotate-display-mode) ; A fixed number of days lookback
3245 (vc-annotate-display-default
3246 (/ vc-annotate-display-mode
3247 (vc-annotate-oldest-in-map vc-annotate-color-map))))
3248 (t (error "No such display mode: %s"
3249 vc-annotate-display-mode))))
3250
3251 ;;;###autoload
3252 (defun vc-annotate (file rev &optional display-mode buf)
3253 "Display the edit history of the current file using colors.
3254
3255 This command creates a buffer that shows, for each line of the current
3256 file, when it was last edited and by whom. Additionally, colors are
3257 used to show the age of each line--blue means oldest, red means
3258 youngest, and intermediate colors indicate intermediate ages. By
3259 default, the time scale stretches back one year into the past;
3260 everything that is older than that is shown in blue.
3261
3262 With a prefix argument, this command asks two questions in the
3263 minibuffer. First, you may enter a revision number; then the buffer
3264 displays and annotates that revision instead of the working revision
3265 \(type RET in the minibuffer to leave that default unchanged). Then,
3266 you are prompted for the time span in days which the color range
3267 should cover. For example, a time span of 20 days means that changes
3268 over the past 20 days are shown in red to blue, according to their
3269 age, and everything that is older than that is shown in blue.
3270
3271 Customization variables:
3272
3273 `vc-annotate-menu-elements' customizes the menu elements of the
3274 mode-specific menu. `vc-annotate-color-map' and
3275 `vc-annotate-very-old-color' define the mapping of time to colors.
3276 `vc-annotate-background' specifies the background color."
3277 (interactive
3278 (save-current-buffer
3279 (vc-ensure-vc-buffer)
3280 (list buffer-file-name
3281 (let ((def (vc-working-revision buffer-file-name)))
3282 (if (null current-prefix-arg) def
3283 (read-string
3284 (format "Annotate from revision (default %s): " def)
3285 nil nil def)))
3286 (if (null current-prefix-arg)
3287 vc-annotate-display-mode
3288 (float (string-to-number
3289 (read-string "Annotate span days (default 20): "
3290 nil nil "20")))))))
3291 (vc-ensure-vc-buffer)
3292 (setq vc-annotate-display-mode display-mode) ;Not sure why. --Stef
3293 (let* ((temp-buffer-name (format "*Annotate %s (rev %s)*" (buffer-name) rev))
3294 (temp-buffer-show-function 'vc-annotate-display-select)
3295 ;; If BUF is specified, we presume the caller maintains current line,
3296 ;; so we don't need to do it here. This implementation may give
3297 ;; strange results occasionally in the case of REV != WORKFILE-REV.
3298 (current-line (unless buf (line-number-at-pos))))
3299 (message "Annotating...")
3300 ;; If BUF is specified it tells in which buffer we should put the
3301 ;; annotations. This is used when switching annotations to another
3302 ;; revision, so we should update the buffer's name.
3303 (if buf (with-current-buffer buf
3304 (rename-buffer temp-buffer-name t)
3305 ;; In case it had to be uniquified.
3306 (setq temp-buffer-name (buffer-name))))
3307 (with-output-to-temp-buffer temp-buffer-name
3308 (vc-call annotate-command file (get-buffer temp-buffer-name) rev)
3309 ;; we must setup the mode first, and then set our local
3310 ;; variables before the show-function is called at the exit of
3311 ;; with-output-to-temp-buffer
3312 (with-current-buffer temp-buffer-name
3313 (if (not (equal major-mode 'vc-annotate-mode))
3314 (vc-annotate-mode))
3315 (set (make-local-variable 'vc-annotate-backend) (vc-backend file))
3316 (set (make-local-variable 'vc-annotate-parent-file) file)
3317 (set (make-local-variable 'vc-annotate-parent-rev) rev)
3318 (set (make-local-variable 'vc-annotate-parent-display-mode)
3319 display-mode)))
3320
3321 (with-current-buffer temp-buffer-name
3322 (vc-exec-after
3323 `(progn
3324 ;; Ideally, we'd rather not move point if the user has already
3325 ;; moved it elsewhere, but really point here is not the position
3326 ;; of the user's cursor :-(
3327 (when ,current-line ;(and (bobp))
3328 (goto-line ,current-line)
3329 (setq vc-sentinel-movepoint (point)))
3330 (unless (active-minibuffer-window)
3331 (message "Annotating... done")))))))
3332
3333 (defun vc-annotate-prev-revision (prefix)
3334 "Visit the annotation of the revision previous to this one.
3335
3336 With a numeric prefix argument, annotate the revision that many
3337 revisions previous."
3338 (interactive "p")
3339 (vc-annotate-warp-revision (- 0 prefix)))
3340
3341 (defun vc-annotate-next-revision (prefix)
3342 "Visit the annotation of the revision after this one.
3343
3344 With a numeric prefix argument, annotate the revision that many
3345 revisions after."
3346 (interactive "p")
3347 (vc-annotate-warp-revision prefix))
3348
3349 (defun vc-annotate-working-revision ()
3350 "Visit the annotation of the working revision of this file."
3351 (interactive)
3352 (if (not (equal major-mode 'vc-annotate-mode))
3353 (message "Cannot be invoked outside of a vc annotate buffer")
3354 (let ((warp-rev (vc-working-revision vc-annotate-parent-file)))
3355 (if (equal warp-rev vc-annotate-parent-rev)
3356 (message "Already at revision %s" warp-rev)
3357 (vc-annotate-warp-revision warp-rev)))))
3358
3359 (defun vc-annotate-extract-revision-at-line ()
3360 "Extract the revision number of the current line."
3361 ;; This function must be invoked from a buffer in vc-annotate-mode
3362 (vc-call-backend vc-annotate-backend 'annotate-extract-revision-at-line))
3363
3364 (defun vc-annotate-revision-at-line ()
3365 "Visit the annotation of the revision identified in the current line."
3366 (interactive)
3367 (if (not (equal major-mode 'vc-annotate-mode))
3368 (message "Cannot be invoked outside of a vc annotate buffer")
3369 (let ((rev-at-line (vc-annotate-extract-revision-at-line)))
3370 (if (not rev-at-line)
3371 (message "Cannot extract revision number from the current line")
3372 (if (equal rev-at-line vc-annotate-parent-rev)
3373 (message "Already at revision %s" rev-at-line)
3374 (vc-annotate-warp-revision rev-at-line))))))
3375
3376 (defun vc-annotate-revision-previous-to-line ()
3377 "Visit the annotation of the revision before the revision at line."
3378 (interactive)
3379 (if (not (equal major-mode 'vc-annotate-mode))
3380 (message "Cannot be invoked outside of a vc annotate buffer")
3381 (let ((rev-at-line (vc-annotate-extract-revision-at-line))
3382 (prev-rev nil))
3383 (if (not rev-at-line)
3384 (message "Cannot extract revision number from the current line")
3385 (setq prev-rev
3386 (vc-call previous-revision vc-annotate-parent-file rev-at-line))
3387 (vc-annotate-warp-revision prev-rev)))))
3388
3389 (defun vc-annotate-show-log-revision-at-line ()
3390 "Visit the log of the revision at line."
3391 (interactive)
3392 (if (not (equal major-mode 'vc-annotate-mode))
3393 (message "Cannot be invoked outside of a vc annotate buffer")
3394 (let ((rev-at-line (vc-annotate-extract-revision-at-line)))
3395 (if (not rev-at-line)
3396 (message "Cannot extract revision number from the current line")
3397 (vc-print-log rev-at-line)))))
3398
3399 (defun vc-annotate-show-diff-revision-at-line ()
3400 "Visit the diff of the revision at line from its previous revision."
3401 (interactive)
3402 (if (not (equal major-mode 'vc-annotate-mode))
3403 (message "Cannot be invoked outside of a vc annotate buffer")
3404 (let ((rev-at-line (vc-annotate-extract-revision-at-line))
3405 (prev-rev nil))
3406 (if (not rev-at-line)
3407 (message "Cannot extract revision number from the current line")
3408 (setq prev-rev
3409 (vc-call previous-revision vc-annotate-parent-file rev-at-line))
3410 (if (not prev-rev)
3411 (message "Cannot diff from any revision prior to %s" rev-at-line)
3412 (save-window-excursion
3413 (vc-diff-internal nil (list vc-annotate-parent-file)
3414 prev-rev rev-at-line))
3415 (switch-to-buffer "*vc-diff*"))))))
3416
3417 (defun vc-annotate-warp-revision (revspec)
3418 "Annotate the revision described by REVSPEC.
3419
3420 If REVSPEC is a positive integer, warp that many revisions
3421 forward, if possible, otherwise echo a warning message. If
3422 REVSPEC is a negative integer, warp that many revisions backward,
3423 if possible, otherwise echo a warning message. If REVSPEC is a
3424 string, then it describes a revision number, so warp to that
3425 revision."
3426 (if (not (equal major-mode 'vc-annotate-mode))
3427 (message "Cannot be invoked outside of a vc annotate buffer")
3428 (let* ((buf (current-buffer))
3429 (oldline (line-number-at-pos))
3430 (revspeccopy revspec)
3431 (newrev nil))
3432 (cond
3433 ((and (integerp revspec) (> revspec 0))
3434 (setq newrev vc-annotate-parent-rev)
3435 (while (and (> revspec 0) newrev)
3436 (setq newrev (vc-call next-revision
3437 vc-annotate-parent-file newrev))
3438 (setq revspec (1- revspec)))
3439 (if (not newrev)
3440 (message "Cannot increment %d revisions from revision %s"
3441 revspeccopy vc-annotate-parent-rev)))
3442 ((and (integerp revspec) (< revspec 0))
3443 (setq newrev vc-annotate-parent-rev)
3444 (while (and (< revspec 0) newrev)
3445 (setq newrev (vc-call previous-revision
3446 vc-annotate-parent-file newrev))
3447 (setq revspec (1+ revspec)))
3448 (if (not newrev)
3449 (message "Cannot decrement %d revisions from revision %s"
3450 (- 0 revspeccopy) vc-annotate-parent-rev)))
3451 ((stringp revspec) (setq newrev revspec))
3452 (t (error "Invalid argument to vc-annotate-warp-revision")))
3453 (when newrev
3454 (vc-annotate vc-annotate-parent-file newrev
3455 vc-annotate-parent-display-mode
3456 buf)
3457 (goto-line (min oldline (progn (goto-char (point-max))
3458 (forward-line -1)
3459 (line-number-at-pos))) buf)))))
3460
3461 (defun vc-annotate-compcar (threshold a-list)
3462 "Test successive cons cells of A-LIST against THRESHOLD.
3463 Return the first cons cell with a car that is not less than THRESHOLD,
3464 nil if no such cell exists."
3465 (let ((i 1)
3466 (tmp-cons (car a-list)))
3467 (while (and tmp-cons (< (car tmp-cons) threshold))
3468 (setq tmp-cons (car (nthcdr i a-list)))
3469 (setq i (+ i 1)))
3470 tmp-cons)) ; Return the appropriate value
3471
3472 (defun vc-annotate-convert-time (time)
3473 "Convert a time value to a floating-point number of days.
3474 The argument TIME is a list as returned by `current-time' or
3475 `encode-time', only the first two elements of that list are considered."
3476 (/ (+ (* (float (car time)) (lsh 1 16)) (cadr time)) 24 3600))
3477
3478 (defun vc-annotate-difference (&optional offset)
3479 "Return the time span in days to the next annotation.
3480 This calls the backend function annotate-time, and returns the
3481 difference in days between the time returned and the current time,
3482 or OFFSET if present."
3483 (let ((next-time (vc-call-backend vc-annotate-backend 'annotate-time)))
3484 (if next-time
3485 (- (or offset
3486 (vc-call-backend vc-annotate-backend 'annotate-current-time))
3487 next-time))))
3488
3489 (defun vc-default-annotate-current-time (backend)
3490 "Return the current time, encoded as fractional days."
3491 (vc-annotate-convert-time (current-time)))
3492
3493 (defvar vc-annotate-offset nil)
3494
3495 (defun vc-annotate-display (ratio &optional offset)
3496 "Highlight `vc-annotate' output in the current buffer.
3497 RATIO, is the expansion that should be applied to `vc-annotate-color-map'.
3498 The annotations are relative to the current time, unless overridden by OFFSET."
3499 (if (/= ratio 1.0)
3500 (set (make-local-variable 'vc-annotate-color-map)
3501 (mapcar (lambda (elem) (cons (* (car elem) ratio) (cdr elem)))
3502 vc-annotate-color-map)))
3503 (set (make-local-variable 'vc-annotate-offset) offset)
3504 (font-lock-mode 1))
3505
3506 (defun vc-annotate-lines (limit)
3507 (while (< (point) limit)
3508 (let ((difference (vc-annotate-difference vc-annotate-offset))
3509 (start (point))
3510 (end (progn (forward-line 1) (point))))
3511 (when difference
3512 (let* ((color (or (vc-annotate-compcar difference vc-annotate-color-map)
3513 (cons nil vc-annotate-very-old-color)))
3514 ;; substring from index 1 to remove any leading `#' in the name
3515 (face-name (concat "vc-annotate-face-"
3516 (if (string-equal
3517 (substring (cdr color) 0 1) "#")
3518 (substring (cdr color) 1)
3519 (cdr color))))
3520 ;; Make the face if not done.
3521 (face (or (intern-soft face-name)
3522 (let ((tmp-face (make-face (intern face-name))))
3523 (set-face-foreground tmp-face (cdr color))
3524 (if vc-annotate-background
3525 (set-face-background tmp-face
3526 vc-annotate-background))
3527 tmp-face)))) ; Return the face
3528 (put-text-property start end 'face face)))))
3529 ;; Pretend to font-lock there were no matches.
3530 nil)
3531 \f
3532
3533 ;; Set up key bindings for use while editing log messages
3534
3535 (defun vc-log-edit (fileset)
3536 "Set up `log-edit' for use with VC on FILE."
3537 (setq default-directory
3538 (with-current-buffer vc-parent-buffer default-directory))
3539 (log-edit 'vc-finish-logentry nil `(lambda () ',fileset))
3540 (set (make-local-variable 'vc-log-fileset) fileset)
3541 (make-local-variable 'vc-log-revision)
3542 (set-buffer-modified-p nil)
3543 (setq buffer-file-name nil))
3544
3545 ;; These things should probably be generally available
3546
3547 (defun vc-file-tree-walk (dirname func &rest args)
3548 "Walk recursively through DIRNAME.
3549 Invoke FUNC f ARGS on each VC-managed file f underneath it."
3550 (vc-file-tree-walk-internal (expand-file-name dirname) func args)
3551 (message "Traversing directory %s...done" dirname))
3552
3553 (defun vc-file-tree-walk-internal (file func args)
3554 (if (not (file-directory-p file))
3555 (if (vc-backend file) (apply func file args))
3556 (message "Traversing directory %s..." (abbreviate-file-name file))
3557 (let ((dir (file-name-as-directory file)))
3558 (mapcar
3559 (lambda (f) (or
3560 (string-equal f ".")
3561 (string-equal f "..")
3562 (member f vc-directory-exclusion-list)
3563 (let ((dirf (expand-file-name f dir)))
3564 (or
3565 (file-symlink-p dirf) ;; Avoid possible loops.
3566 (vc-file-tree-walk-internal dirf func args)))))
3567 (directory-files dir)))))
3568
3569 (provide 'vc)
3570
3571 ;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
3572 ;;
3573 ;; These may be useful to anyone who has to debug or extend the package.
3574 ;; (Note that this information corresponds to versions 5.x. Some of it
3575 ;; might have been invalidated by the additions to support branching
3576 ;; and RCS keyword lookup. AS, 1995/03/24)
3577 ;;
3578 ;; A fundamental problem in VC is that there are time windows between
3579 ;; vc-next-action's computations of the file's version-control state and
3580 ;; the actions that change it. This is a window open to lossage in a
3581 ;; multi-user environment; someone else could nip in and change the state
3582 ;; of the master during it.
3583 ;;
3584 ;; The performance problem is that rlog/prs calls are very expensive; we want
3585 ;; to avoid them as much as possible.
3586 ;;
3587 ;; ANALYSIS:
3588 ;;
3589 ;; The performance problem, it turns out, simplifies in practice to the
3590 ;; problem of making vc-state fast. The two other functions that call
3591 ;; prs/rlog will not be so commonly used that the slowdown is a problem; one
3592 ;; makes snapshots, the other deletes the calling user's last change in the
3593 ;; master.
3594 ;;
3595 ;; The race condition implies that we have to either (a) lock the master
3596 ;; during the entire execution of vc-next-action, or (b) detect and
3597 ;; recover from errors resulting from dispatch on an out-of-date state.
3598 ;;
3599 ;; Alternative (a) appears to be infeasible. The problem is that we can't
3600 ;; guarantee that the lock will ever be removed. Suppose a user starts a
3601 ;; checkin, the change message buffer pops up, and the user, having wandered
3602 ;; off to do something else, simply forgets about it?
3603 ;;
3604 ;; Alternative (b), on the other hand, works well with a cheap way to speed up
3605 ;; vc-state. Usually, if a file is registered, we can read its locked/
3606 ;; unlocked state and its current owner from its permissions.
3607 ;;
3608 ;; This shortcut will fail if someone has manually changed the workfile's
3609 ;; permissions; also if developers are munging the workfile in several
3610 ;; directories, with symlinks to a master (in this latter case, the
3611 ;; permissions shortcut will fail to detect a lock asserted from another
3612 ;; directory).
3613 ;;
3614 ;; Note that these cases correspond exactly to the errors which could happen
3615 ;; because of a competing checkin/checkout race in between two instances of
3616 ;; vc-next-action.
3617 ;;
3618 ;; For VC's purposes, a workfile/master pair may have the following states:
3619 ;;
3620 ;; A. Unregistered. There is a workfile, there is no master.
3621 ;;
3622 ;; B. Registered and not locked by anyone.
3623 ;;
3624 ;; C. Locked by calling user and unchanged.
3625 ;;
3626 ;; D. Locked by the calling user and changed.
3627 ;;
3628 ;; E. Locked by someone other than the calling user.
3629 ;;
3630 ;; This makes for 25 states and 20 error conditions. Here's the matrix:
3631 ;;
3632 ;; VC's idea of state
3633 ;; |
3634 ;; V Actual state RCS action SCCS action Effect
3635 ;; A B C D E
3636 ;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
3637 ;; B 5 . 6 7 8 co -l get -e checkout
3638 ;; C 9 10 . 11 12 co -u unget; get revert
3639 ;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
3640 ;; E 17 18 19 20 . rcs -u -M -l unget -n ; get -g steal lock
3641 ;;
3642 ;; All commands take the master file name as a last argument (not shown).
3643 ;;
3644 ;; In the discussion below, a "self-race" is a pathological situation in
3645 ;; which VC operations are being attempted simultaneously by two or more
3646 ;; Emacsen running under the same username.
3647 ;;
3648 ;; The vc-next-action code has the following windows:
3649 ;;
3650 ;; Window P:
3651 ;; Between the check for existence of a master file and the call to
3652 ;; admin/checkin in vc-buffer-admin (apparent state A). This window may
3653 ;; never close if the initial-comment feature is on.
3654 ;;
3655 ;; Window Q:
3656 ;; Between the call to vc-workfile-unchanged-p in and the immediately
3657 ;; following revert (apparent state C).
3658 ;;
3659 ;; Window R:
3660 ;; Between the call to vc-workfile-unchanged-p in and the following
3661 ;; checkin (apparent state D). This window may never close.
3662 ;;
3663 ;; Window S:
3664 ;; Between the unlock and the immediately following checkout during a
3665 ;; revert operation (apparent state C). Included in window Q.
3666 ;;
3667 ;; Window T:
3668 ;; Between vc-state and the following checkout (apparent state B).
3669 ;;
3670 ;; Window U:
3671 ;; Between vc-state and the following revert (apparent state C).
3672 ;; Includes windows Q and S.
3673 ;;
3674 ;; Window V:
3675 ;; Between vc-state and the following checkin (apparent state
3676 ;; D). This window may never be closed if the user fails to complete the
3677 ;; checkin message. Includes window R.
3678 ;;
3679 ;; Window W:
3680 ;; Between vc-state and the following steal-lock (apparent
3681 ;; state E). This window may never close if the user fails to complete
3682 ;; the steal-lock message. Includes window X.
3683 ;;
3684 ;; Window X:
3685 ;; Between the unlock and the immediately following re-lock during a
3686 ;; steal-lock operation (apparent state E). This window may never close
3687 ;; if the user fails to complete the steal-lock message.
3688 ;;
3689 ;; Errors:
3690 ;;
3691 ;; Apparent state A ---
3692 ;;
3693 ;; 1. File looked unregistered but is actually registered and not locked.
3694 ;;
3695 ;; Potential cause: someone else's admin during window P, with
3696 ;; caller's admin happening before their checkout.
3697 ;;
3698 ;; RCS: Prior to version 5.6.4, ci fails with message
3699 ;; "no lock set by <user>". From 5.6.4 onwards, VC uses the new
3700 ;; ci -i option and the message is "<file>,v: already exists".
3701 ;; SCCS: admin will fail with error (ad19).
3702 ;;
3703 ;; We can let these errors be passed up to the user.
3704 ;;
3705 ;; 2. File looked unregistered but is actually locked by caller, unchanged.
3706 ;;
3707 ;; Potential cause: self-race during window P.
3708 ;;
3709 ;; RCS: Prior to version 5.6.4, reverts the file to the last saved
3710 ;; version and unlocks it. From 5.6.4 onwards, VC uses the new
3711 ;; ci -i option, failing with message "<file>,v: already exists".
3712 ;; SCCS: will fail with error (ad19).
3713 ;;
3714 ;; Either of these consequences is acceptable.
3715 ;;
3716 ;; 3. File looked unregistered but is actually locked by caller, changed.
3717 ;;
3718 ;; Potential cause: self-race during window P.
3719 ;;
3720 ;; RCS: Prior to version 5.6.4, VC registers the caller's workfile as
3721 ;; a delta with a null change comment (the -t- switch will be
3722 ;; ignored). From 5.6.4 onwards, VC uses the new ci -i option,
3723 ;; failing with message "<file>,v: already exists".
3724 ;; SCCS: will fail with error (ad19).
3725 ;;
3726 ;; 4. File looked unregistered but is locked by someone else.
3727 ;;;
3728 ;; Potential cause: someone else's admin during window P, with
3729 ;; caller's admin happening *after* their checkout.
3730 ;;
3731 ;; RCS: Prior to version 5.6.4, ci fails with a
3732 ;; "no lock set by <user>" message. From 5.6.4 onwards,
3733 ;; VC uses the new ci -i option, failing with message
3734 ;; "<file>,v: already exists".
3735 ;; SCCS: will fail with error (ad19).
3736 ;;
3737 ;; We can let these errors be passed up to the user.
3738 ;;
3739 ;; Apparent state B ---
3740 ;;
3741 ;; 5. File looked registered and not locked, but is actually unregistered.
3742 ;;
3743 ;; Potential cause: master file got nuked during window P.
3744 ;;
3745 ;; RCS: will fail with "RCS/<file>: No such file or directory"
3746 ;; SCCS: will fail with error ut4.
3747 ;;
3748 ;; We can let these errors be passed up to the user.
3749 ;;
3750 ;; 6. File looked registered and not locked, but is actually locked by the
3751 ;; calling user and unchanged.
3752 ;;
3753 ;; Potential cause: self-race during window T.
3754 ;;
3755 ;; RCS: in the same directory as the previous workfile, co -l will fail
3756 ;; with "co error: writable foo exists; checkout aborted". In any other
3757 ;; directory, checkout will succeed.
3758 ;; SCCS: will fail with ge17.
3759 ;;
3760 ;; Either of these consequences is acceptable.
3761 ;;
3762 ;; 7. File looked registered and not locked, but is actually locked by the
3763 ;; calling user and changed.
3764 ;;
3765 ;; As case 6.
3766 ;;
3767 ;; 8. File looked registered and not locked, but is actually locked by another
3768 ;; user.
3769 ;;
3770 ;; Potential cause: someone else checks it out during window T.
3771 ;;
3772 ;; RCS: co error: revision 1.3 already locked by <user>
3773 ;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
3774 ;;
3775 ;; We can let these errors be passed up to the user.
3776 ;;
3777 ;; Apparent state C ---
3778 ;;
3779 ;; 9. File looks locked by calling user and unchanged, but is unregistered.
3780 ;;
3781 ;; As case 5.
3782 ;;
3783 ;; 10. File looks locked by calling user and unchanged, but is actually not
3784 ;; locked.
3785 ;;
3786 ;; Potential cause: a self-race in window U, or by the revert's
3787 ;; landing during window X of some other user's steal-lock or window S
3788 ;; of another user's revert.
3789 ;;
3790 ;; RCS: succeeds, refreshing the file from the identical version in
3791 ;; the master.
3792 ;; SCCS: fails with error ut4 (p file nonexistent).
3793 ;;
3794 ;; Either of these consequences is acceptable.
3795 ;;
3796 ;; 11. File is locked by calling user. It looks unchanged, but is actually
3797 ;; changed.
3798 ;;
3799 ;; Potential cause: the file would have to be touched by a self-race
3800 ;; during window Q.
3801 ;;
3802 ;; The revert will succeed, removing whatever changes came with
3803 ;; the touch. It is theoretically possible that work could be lost.
3804 ;;
3805 ;; 12. File looks like it's locked by the calling user and unchanged, but
3806 ;; it's actually locked by someone else.
3807 ;;
3808 ;; Potential cause: a steal-lock in window V.
3809 ;;
3810 ;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
3811 ;; SCCS: fails with error un2
3812 ;;
3813 ;; We can pass these errors up to the user.
3814 ;;
3815 ;; Apparent state D ---
3816 ;;
3817 ;; 13. File looks like it's locked by the calling user and changed, but it's
3818 ;; actually unregistered.
3819 ;;
3820 ;; Potential cause: master file got nuked during window P.
3821 ;;
3822 ;; RCS: Prior to version 5.6.4, checks in the user's version as an
3823 ;; initial delta. From 5.6.4 onwards, VC uses the new ci -j
3824 ;; option, failing with message "no such file or directory".
3825 ;; SCCS: will fail with error ut4.
3826 ;;
3827 ;; This case is kind of nasty. Under RCS prior to version 5.6.4,
3828 ;; VC may fail to detect the loss of previous version information.
3829 ;;
3830 ;; 14. File looks like it's locked by the calling user and changed, but it's
3831 ;; actually unlocked.
3832 ;;
3833 ;; Potential cause: self-race in window V, or the checkin happening
3834 ;; during the window X of someone else's steal-lock or window S of
3835 ;; someone else's revert.
3836 ;;
3837 ;; RCS: ci will fail with "no lock set by <user>".
3838 ;; SCCS: delta will fail with error ut4.
3839 ;;
3840 ;; 15. File looks like it's locked by the calling user and changed, but it's
3841 ;; actually locked by the calling user and unchanged.
3842 ;;
3843 ;; Potential cause: another self-race --- a whole checkin/checkout
3844 ;; sequence by the calling user would have to land in window R.
3845 ;;
3846 ;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
3847 ;; RCS: reverts to the file state as of the second user's checkin, leaving
3848 ;; the file unlocked.
3849 ;;
3850 ;; It is theoretically possible that work could be lost under RCS.
3851 ;;
3852 ;; 16. File looks like it's locked by the calling user and changed, but it's
3853 ;; actually locked by a different user.
3854 ;;
3855 ;; RCS: ci error: no lock set by <user>
3856 ;; SCCS: unget will fail with error un2
3857 ;;
3858 ;; We can pass these errors up to the user.
3859 ;;
3860 ;; Apparent state E ---
3861 ;;
3862 ;; 17. File looks like it's locked by some other user, but it's actually
3863 ;; unregistered.
3864 ;;
3865 ;; As case 13.
3866 ;;
3867 ;; 18. File looks like it's locked by some other user, but it's actually
3868 ;; unlocked.
3869 ;;
3870 ;; Potential cause: someone released a lock during window W.
3871 ;;
3872 ;; RCS: The calling user will get the lock on the file.
3873 ;; SCCS: unget -n will fail with cm4.
3874 ;;
3875 ;; Either of these consequences will be OK.
3876 ;;
3877 ;; 19. File looks like it's locked by some other user, but it's actually
3878 ;; locked by the calling user and unchanged.
3879 ;;
3880 ;; Potential cause: the other user relinquishing a lock followed by
3881 ;; a self-race, both in window W.
3882 ;;
3883 ;; Under both RCS and SCCS, both unlock and lock will succeed, making
3884 ;; the sequence a no-op.
3885 ;;
3886 ;; 20. File looks like it's locked by some other user, but it's actually
3887 ;; locked by the calling user and changed.
3888 ;;
3889 ;; As case 19.
3890 ;;
3891 ;; PROBLEM CASES:
3892 ;;
3893 ;; In order of decreasing severity:
3894 ;;
3895 ;; Cases 11 and 15 are the only ones that potentially lose work.
3896 ;; They would require a self-race for this to happen.
3897 ;;
3898 ;; Case 13 in RCS loses information about previous deltas, retaining
3899 ;; only the information in the current workfile. This can only happen
3900 ;; if the master file gets nuked in window P.
3901 ;;
3902 ;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
3903 ;; no change comment in the master. This would require a self-race in
3904 ;; window P or R respectively.
3905 ;;
3906 ;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
3907 ;;
3908 ;; Unfortunately, it appears to me that no recovery is possible in these
3909 ;; cases. They don't yield error messages, so there's no way to tell that
3910 ;; a race condition has occurred.
3911 ;;
3912 ;; All other cases don't change either the workfile or the master, and
3913 ;; trigger command errors which the user will see.
3914 ;;
3915 ;; Thus, there is no explicit recovery code.
3916
3917 ;; arch-tag: ca82c1de-3091-4e26-af92-460abc6213a6
3918 ;;; vc.el ends here