Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / vc / vc.el
blob4a536900eb3967e9a5cb03ca645fb853da7c3047
1 ;;; vc.el --- drive a version-control system from within Emacs -*- lexical-binding: t -*-
3 ;; Copyright (C) 1992-1998, 2000-2014 Free Software Foundation, Inc.
5 ;; Author: FSF (see below for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7 ;; Keywords: vc tools
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Credits:
26 ;; VC was initially designed and implemented by Eric S. Raymond
27 ;; <esr@thyrsus.com> in 1992. Over the years, many other people have
28 ;; contributed substantial amounts of work to VC. These include:
30 ;; Per Cederqvist <ceder@lysator.liu.se>
31 ;; Paul Eggert <eggert@twinsun.com>
32 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
33 ;; Martin Lorentzson <martinl@gnu.org>
34 ;; Dave Love <fx@gnu.org>
35 ;; Stefan Monnier <monnier@cs.yale.edu>
36 ;; Thien-Thi Nguyen <ttn@gnu.org>
37 ;; Dan Nicolaescu <dann@ics.uci.edu>
38 ;; J.D. Smith <jdsmith@alum.mit.edu>
39 ;; Andre Spiegel <spiegel@gnu.org>
40 ;; Richard Stallman <rms@gnu.org>
42 ;; In July 2007 ESR returned and redesigned the mode to cope better
43 ;; with modern version-control systems that do commits by fileset
44 ;; rather than per individual file.
46 ;; If you maintain a client of the mode or customize it in your .emacs,
47 ;; note that some backend functions which formerly took single file arguments
48 ;; now take a list of files. These include: register, checkin, print-log,
49 ;; rollback, and diff.
51 ;;; Commentary:
53 ;; This mode is fully documented in the Emacs user's manual.
55 ;; Supported version-control systems presently include CVS, RCS, GNU
56 ;; Arch, Subversion, Bzr, Git, Mercurial, Monotone and SCCS
57 ;; (or its free replacement, CSSC).
59 ;; If your site uses the ChangeLog convention supported by Emacs, the
60 ;; function `log-edit-comment-to-change-log' could prove a useful checkin hook,
61 ;; although you might prefer to use C-c C-a (i.e. `log-edit-insert-changelog')
62 ;; from the commit buffer instead or to set `log-edit-setup-invert'.
64 ;; When using SCCS, RCS, CVS: be careful not to do repo surgery, or
65 ;; operations like registrations and deletions and renames, outside VC
66 ;; while VC is running. The support for these systems was designed
67 ;; when disks were much slower, and the code maintains a lot of
68 ;; internal state in order to reduce expensive operations to a
69 ;; minimum. Thus, if you mess with the repo while VC's back is turned,
70 ;; VC may get seriously confused.
72 ;; When using Subversion or a later system, anything you do outside VC
73 ;; *through the VCS tools* should safely interlock with VC
74 ;; operations. Under these VC does little state caching, because local
75 ;; operations are assumed to be fast. The dividing line is
77 ;; ADDING SUPPORT FOR OTHER BACKENDS
79 ;; VC can use arbitrary version control systems as a backend. To add
80 ;; support for a new backend named SYS, write a library vc-sys.el that
81 ;; contains functions of the form `vc-sys-...' (note that SYS is in lower
82 ;; case for the function and library names). VC will use that library if
83 ;; you put the symbol SYS somewhere into the list of
84 ;; `vc-handled-backends'. Then, for example, if `vc-sys-registered'
85 ;; returns non-nil for a file, all SYS-specific versions of VC commands
86 ;; will be available for that file.
88 ;; VC keeps some per-file information in the form of properties (see
89 ;; vc-file-set/getprop in vc-hooks.el). The backend-specific functions
90 ;; do not generally need to be aware of these properties. For example,
91 ;; `vc-sys-working-revision' should compute the working revision and
92 ;; return it; it should not look it up in the property, and it needn't
93 ;; store it there either. However, if a backend-specific function does
94 ;; store a value in a property, that value takes precedence over any
95 ;; value that the generic code might want to set (check for uses of
96 ;; the macro `with-vc-properties' in vc.el).
98 ;; In the list of functions below, each identifier needs to be prepended
99 ;; with `vc-sys-'. Some of the functions are mandatory (marked with a
100 ;; `*'), others are optional (`-').
102 ;; BACKEND PROPERTIES
104 ;; * revision-granularity
106 ;; Takes no arguments. Returns either 'file or 'repository. Backends
107 ;; that return 'file have per-file revision numbering; backends
108 ;; that return 'repository have per-repository revision numbering,
109 ;; so a revision level implicitly identifies a changeset
111 ;; STATE-QUERYING FUNCTIONS
113 ;; * registered (file)
115 ;; Return non-nil if FILE is registered in this backend. Both this
116 ;; function as well as `state' should be careful to fail gracefully
117 ;; in the event that the backend executable is absent. It is
118 ;; preferable that this function's *body* is autoloaded, that way only
119 ;; calling vc-registered does not cause the backend to be loaded
120 ;; (all the vc-FOO-registered functions are called to try to find
121 ;; the controlling backend for FILE).
123 ;; * state (file)
125 ;; Return the current version control state of FILE. For a list of
126 ;; possible values, see `vc-state'. This function should do a full and
127 ;; reliable state computation; it is usually called immediately after
128 ;; C-x v v. If you want to use a faster heuristic when visiting a
129 ;; file, put that into `state-heuristic' below. Note that under most
130 ;; VCSes this won't be called at all, dir-status is used instead.
132 ;; - state-heuristic (file)
134 ;; If provided, this function is used to estimate the version control
135 ;; state of FILE at visiting time. It should be considerably faster
136 ;; than the implementation of `state'. For a list of possible values,
137 ;; see the doc string of `vc-state'.
139 ;; - dir-status (dir update-function)
141 ;; Produce RESULT: a list of lists of the form (FILE VC-STATE EXTRA)
142 ;; for the files in DIR.
143 ;; EXTRA can be used for backend specific information about FILE.
144 ;; If a command needs to be run to compute this list, it should be
145 ;; run asynchronously using (current-buffer) as the buffer for the
146 ;; command. When RESULT is computed, it should be passed back by
147 ;; doing: (funcall UPDATE-FUNCTION RESULT nil).
148 ;; If the backend uses a process filter, hence it produces partial results,
149 ;; they can be passed back by doing:
150 ;; (funcall UPDATE-FUNCTION RESULT t)
151 ;; and then do a (funcall UPDATE-FUNCTION RESULT nil)
152 ;; when all the results have been computed.
153 ;; To provide more backend specific functionality for `vc-dir'
154 ;; the following functions might be needed: `dir-extra-headers',
155 ;; `dir-printer', `extra-dir-menu' and `dir-status-files'.
157 ;; - dir-status-files (dir files default-state update-function)
159 ;; This function is identical to dir-status except that it should
160 ;; only report status for the specified FILES. Also it needs to
161 ;; report on all requested files, including up-to-date or ignored
162 ;; files. If not provided, the default is to consider that the files
163 ;; are in DEFAULT-STATE.
165 ;; - dir-extra-headers (dir)
167 ;; Return a string that will be added to the *vc-dir* buffer header.
169 ;; - dir-printer (fileinfo)
171 ;; Pretty print the `vc-dir-fileinfo' FILEINFO.
172 ;; If a backend needs to show more information than the default FILE
173 ;; and STATE in the vc-dir listing, it can store that extra
174 ;; information in `vc-dir-fileinfo->extra'. This function can be
175 ;; used to display that extra information in the *vc-dir* buffer.
177 ;; - status-fileinfo-extra (file)
179 ;; Compute `vc-dir-fileinfo->extra' for FILE.
181 ;; * working-revision (file)
183 ;; Return the working revision of FILE. This is the revision fetched
184 ;; by the last checkout or update, not necessarily the same thing as the
185 ;; head or tip revision. Should return "0" for a file added but not yet
186 ;; committed.
188 ;; - latest-on-branch-p (file)
190 ;; Return non-nil if the working revision of FILE is the latest revision
191 ;; on its branch (many VCSes call this the 'tip' or 'head' revision).
192 ;; The default implementation always returns t, which means that
193 ;; working with non-current revisions is not supported by default.
195 ;; * checkout-model (files)
197 ;; Indicate whether FILES need to be "checked out" before they can be
198 ;; edited. See `vc-checkout-model' for a list of possible values.
200 ;; - workfile-unchanged-p (file)
202 ;; Return non-nil if FILE is unchanged from the working revision.
203 ;; This function should do a brief comparison of FILE's contents
204 ;; with those of the repository copy of the working revision. If
205 ;; the backend does not have such a brief-comparison feature, the
206 ;; default implementation of this function can be used, which
207 ;; delegates to a full vc-BACKEND-diff. (Note that vc-BACKEND-diff
208 ;; must not run asynchronously in this case, see variable
209 ;; `vc-disable-async-diff'.)
211 ;; - mode-line-string (file)
213 ;; If provided, this function should return the VC-specific mode
214 ;; line string for FILE. The returned string should have a
215 ;; `help-echo' property which is the text to be displayed as a
216 ;; tooltip when the mouse hovers over the VC entry on the mode-line.
217 ;; The default implementation deals well with all states that
218 ;; `vc-state' can return.
220 ;; STATE-CHANGING FUNCTIONS
222 ;; * create-repo (backend)
224 ;; Create an empty repository in the current directory and initialize
225 ;; it so VC mode can add files to it. For file-oriented systems, this
226 ;; need do no more than create a subdirectory with the right name.
228 ;; * register (files &optional rev comment)
230 ;; Register FILES in this backend. Optionally, an initial revision REV
231 ;; and an initial description of the file, COMMENT, may be specified,
232 ;; but it is not guaranteed that the backend will do anything with this.
233 ;; The implementation should pass the value of vc-register-switches
234 ;; to the backend command. (Note: in older versions of VC, this
235 ;; command took a single file argument and not a list.)
236 ;; The REV argument is a historical leftover and is never used.
238 ;; - init-revision (file)
240 ;; The initial revision to use when registering FILE if one is not
241 ;; specified by the user. If not provided, the variable
242 ;; vc-default-init-revision is used instead.
244 ;; - responsible-p (file)
246 ;; Return non-nil if this backend considers itself "responsible" for
247 ;; FILE, which can also be a directory. This function is used to find
248 ;; out what backend to use for registration of new files and for things
249 ;; like change log generation. The default implementation always
250 ;; returns nil.
252 ;; - could-register (file)
254 ;; Return non-nil if FILE could be registered under this backend. The
255 ;; default implementation always returns t.
257 ;; - receive-file (file rev)
259 ;; Let this backend "receive" a file that is already registered under
260 ;; another backend. The default implementation simply calls `register'
261 ;; for FILE, but it can be overridden to do something more specific,
262 ;; e.g. keep revision numbers consistent or choose editing modes for
263 ;; FILE that resemble those of the other backend.
265 ;; - unregister (file)
267 ;; Unregister FILE from this backend. This is only needed if this
268 ;; backend may be used as a "more local" backend for temporary editing.
270 ;; * checkin (files rev comment)
272 ;; Commit changes in FILES to this backend. REV is a historical artifact
273 ;; and should be ignored. COMMENT is used as a check-in comment.
274 ;; The implementation should pass the value of vc-checkin-switches to
275 ;; the backend command.
277 ;; * find-revision (file rev buffer)
279 ;; Fetch revision REV of file FILE and put it into BUFFER.
280 ;; If REV is the empty string, fetch the head of the trunk.
281 ;; The implementation should pass the value of vc-checkout-switches
282 ;; to the backend command.
284 ;; * checkout (file &optional editable rev)
286 ;; Check out revision REV of FILE into the working area. If EDITABLE
287 ;; is non-nil, FILE should be writable by the user and if locking is
288 ;; used for FILE, a lock should also be set. If REV is non-nil, that
289 ;; is the revision to check out (default is the working revision).
290 ;; If REV is t, that means to check out the head of the current branch;
291 ;; if it is the empty string, check out the head of the trunk.
292 ;; The implementation should pass the value of vc-checkout-switches
293 ;; to the backend command.
295 ;; * revert (file &optional contents-done)
297 ;; Revert FILE back to the working revision. If optional
298 ;; arg CONTENTS-DONE is non-nil, then the contents of FILE have
299 ;; already been reverted from a version backup, and this function
300 ;; only needs to update the status of FILE within the backend.
301 ;; If FILE is in the `added' state it should be returned to the
302 ;; `unregistered' state.
304 ;; - rollback (files)
306 ;; Remove the tip revision of each of FILES from the repository. If
307 ;; this function is not provided, trying to cancel a revision is
308 ;; caught as an error. (Most backends don't provide it.) (Also
309 ;; note that older versions of this backend command were called
310 ;; 'cancel-version' and took a single file arg, not a list of
311 ;; files.)
313 ;; - merge (file rev1 rev2)
315 ;; Merge the changes between REV1 and REV2 into the current working file
316 ;; (for non-distributed VCS).
318 ;; - merge-branch ()
320 ;; Merge another branch into the current one, prompting for a
321 ;; location to merge from.
323 ;; - merge-news (file)
325 ;; Merge recent changes from the current branch into FILE.
326 ;; (for non-distributed VCS).
328 ;; - pull (prompt)
330 ;; Pull "upstream" changes into the current branch (for distributed
331 ;; VCS). If PROMPT is non-nil, or if necessary, prompt for a
332 ;; location to pull from.
334 ;; - steal-lock (file &optional revision)
336 ;; Steal any lock on the working revision of FILE, or on REVISION if
337 ;; that is provided. This function is only needed if locking is
338 ;; used for files under this backend, and if files can indeed be
339 ;; locked by other users.
341 ;; - modify-change-comment (files rev comment)
343 ;; Modify the change comments associated with the files at the
344 ;; given revision. This is optional, many backends do not support it.
346 ;; - mark-resolved (files)
348 ;; Mark conflicts as resolved. Some VC systems need to run a
349 ;; command to mark conflicts as resolved.
351 ;; - find-admin-dir (file)
353 ;; Return the administrative directory of FILE.
355 ;; HISTORY FUNCTIONS
357 ;; * print-log (files buffer &optional shortlog start-revision limit)
359 ;; Insert the revision log for FILES into BUFFER.
360 ;; If SHORTLOG is true insert a short version of the log.
361 ;; If LIMIT is true insert only insert LIMIT log entries. If the
362 ;; backend does not support limiting the number of entries to show
363 ;; it should return `limit-unsupported'.
364 ;; If START-REVISION is given, then show the log starting from that
365 ;; revision ("starting" in the sense of it being the _newest_
366 ;; revision shown, rather than the working revision, which is normally
367 ;; the case). Not all backends support this. At present, this is
368 ;; only ever used with LIMIT = 1 (by vc-annotate-show-log-revision-at-line).
370 ;; * log-outgoing (backend remote-location)
372 ;; Insert in BUFFER the revision log for the changes that will be
373 ;; sent when performing a push operation to REMOTE-LOCATION.
375 ;; * log-incoming (backend remote-location)
377 ;; Insert in BUFFER the revision log for the changes that will be
378 ;; received when performing a pull operation from REMOTE-LOCATION.
380 ;; - log-view-mode ()
382 ;; Mode to use for the output of print-log. This defaults to
383 ;; `log-view-mode' and is expected to be changed (if at all) to a derived
384 ;; mode of `log-view-mode'.
386 ;; - show-log-entry (revision)
388 ;; If provided, search the log entry for REVISION in the current buffer,
389 ;; and make sure it is displayed in the buffer's window. The default
390 ;; implementation of this function works for RCS-style logs.
392 ;; - comment-history (file)
394 ;; Return a string containing all log entries that were made for FILE.
395 ;; This is used for transferring a file from one backend to another,
396 ;; retaining comment information.
398 ;; - update-changelog (files)
400 ;; Using recent log entries, create ChangeLog entries for FILES, or for
401 ;; all files at or below the default-directory if FILES is nil. The
402 ;; default implementation runs rcs2log, which handles RCS- and
403 ;; CVS-style logs.
405 ;; * diff (files &optional rev1 rev2 buffer)
407 ;; Insert the diff for FILE into BUFFER, or the *vc-diff* buffer if
408 ;; BUFFER is nil. If REV1 and REV2 are non-nil, report differences
409 ;; from REV1 to REV2. If REV1 is nil, use the working revision (as
410 ;; found in the repository) as the older revision; if REV2 is nil,
411 ;; use the current working-copy contents as the newer revision. This
412 ;; function should pass the value of (vc-switches BACKEND 'diff) to
413 ;; the backend command. It should return a status of either 0 (no
414 ;; differences found), or 1 (either non-empty diff or the diff is
415 ;; run asynchronously).
417 ;; - revision-completion-table (files)
419 ;; Return a completion table for existing revisions of FILES.
420 ;; The default is to not use any completion table.
422 ;; - annotate-command (file buf &optional rev)
424 ;; If this function is provided, it should produce an annotated display
425 ;; of FILE in BUF, relative to revision REV. Annotation means each line
426 ;; of FILE displayed is prefixed with version information associated with
427 ;; its addition (deleted lines leave no history) and that the text of the
428 ;; file is fontified according to age.
430 ;; - annotate-time ()
432 ;; Only required if `annotate-command' is defined for the backend.
433 ;; Return the time of the next line of annotation at or after point,
434 ;; as a floating point fractional number of days. The helper
435 ;; function `vc-annotate-convert-time' may be useful for converting
436 ;; multi-part times as returned by `current-time' and `encode-time'
437 ;; to this format. Return nil if no more lines of annotation appear
438 ;; in the buffer. You can safely assume that point is placed at the
439 ;; beginning of each line, starting at `point-min'. The buffer that
440 ;; point is placed in is the Annotate output, as defined by the
441 ;; relevant backend. This function also affects how much of the line
442 ;; is fontified; where it leaves point is where fontification begins.
444 ;; - annotate-current-time ()
446 ;; Only required if `annotate-command' is defined for the backend,
447 ;; AND you'd like the current time considered to be anything besides
448 ;; (vc-annotate-convert-time (current-time)) -- i.e. the current
449 ;; time with hours, minutes, and seconds included. Probably safe to
450 ;; ignore. Return the current-time, in units of fractional days.
452 ;; - annotate-extract-revision-at-line ()
454 ;; Only required if `annotate-command' is defined for the backend.
455 ;; Invoked from a buffer in vc-annotate-mode, return the revision
456 ;; corresponding to the current line, or nil if there is no revision
457 ;; corresponding to the current line.
458 ;; If the backend supports annotating through copies and renames,
459 ;; and displays a file name and a revision, then return a cons
460 ;; (REVISION . FILENAME).
462 ;; TAG SYSTEM
464 ;; - create-tag (dir name branchp)
466 ;; Attach the tag NAME to the state of the working copy. This
467 ;; should make sure that files are up-to-date before proceeding with
468 ;; the action. DIR can also be a file and if BRANCHP is specified,
469 ;; NAME should be created as a branch and DIR should be checked out
470 ;; under this new branch. The default implementation does not
471 ;; support branches but does a sanity check, a tree traversal and
472 ;; assigns the tag to each file.
474 ;; - retrieve-tag (dir name update)
476 ;; Retrieve the version tagged by NAME of all registered files at or below DIR.
477 ;; If UPDATE is non-nil, then update buffers of any files in the
478 ;; tag that are currently visited. The default implementation
479 ;; does a sanity check whether there aren't any uncommitted changes at
480 ;; or below DIR, and then performs a tree walk, using the `checkout'
481 ;; function to retrieve the corresponding revisions.
483 ;; MISCELLANEOUS
485 ;; - make-version-backups-p (file)
487 ;; Return non-nil if unmodified repository revisions of FILE should be
488 ;; backed up locally. If this is done, VC can perform `diff' and
489 ;; `revert' operations itself, without calling the backend system. The
490 ;; default implementation always returns nil.
492 ;; - root (file)
494 ;; Return the root of the VC controlled hierarchy for file.
496 ;; - repository-hostname (dirname)
498 ;; Return the hostname that the backend will have to contact
499 ;; in order to operate on a file in DIRNAME. If the return value
500 ;; is nil, it means that the repository is local.
501 ;; This function is used in `vc-stay-local-p' which backends can use
502 ;; for their convenience.
504 ;; - ignore (file &optional directory)
506 ;; Ignore FILE under the VCS of DIRECTORY (default is `default-directory').
507 ;; FILE is a file wildcard.
508 ;; When called interactively and with a prefix argument, remove FILE
509 ;; from ignored files.
510 ;; When called from Lisp code, if DIRECTORY is non-nil, the
511 ;; repository to use will be deduced by DIRECTORY.
513 ;; - ignore-completion-table
515 ;; Return the completion table for files ignored by the current
516 ;; version control system, e.g., the entries in `.gitignore' and
517 ;; `.bzrignore'.
519 ;; - previous-revision (file rev)
521 ;; Return the revision number that precedes REV for FILE, or nil if no such
522 ;; revision exists.
524 ;; - next-revision (file rev)
526 ;; Return the revision number that follows REV for FILE, or nil if no such
527 ;; revision exists.
529 ;; - log-edit-mode ()
531 ;; Turn on the mode used for editing the check in log. This
532 ;; defaults to `log-edit-mode'. If changed, it should use a mode
533 ;; derived from`log-edit-mode'.
535 ;; - check-headers ()
537 ;; Return non-nil if the current buffer contains any version headers.
539 ;; - clear-headers ()
541 ;; In the current buffer, reset all version headers to their unexpanded
542 ;; form. This function should be provided if the state-querying code
543 ;; for this backend uses the version headers to determine the state of
544 ;; a file. This function will then be called whenever VC changes the
545 ;; version control state in such a way that the headers would give
546 ;; wrong information.
548 ;; - delete-file (file)
550 ;; Delete FILE and mark it as deleted in the repository. If this
551 ;; function is not provided, the command `vc-delete-file' will
552 ;; signal an error.
554 ;; - rename-file (old new)
556 ;; Rename file OLD to NEW, both in the working area and in the
557 ;; repository. If this function is not provided, the renaming
558 ;; will be done by (vc-delete-file old) and (vc-register new).
560 ;; - find-file-hook ()
562 ;; Operation called in current buffer when opening a file. This can
563 ;; be used by the backend to setup some local variables it might need.
565 ;; - extra-menu ()
567 ;; Return a menu keymap, the items in the keymap will appear at the
568 ;; end of the Version Control menu. The goal is to allow backends
569 ;; to specify extra menu items that appear in the VC menu. This way
570 ;; you can provide menu entries for functionality that is specific
571 ;; to your backend and which does not map to any of the VC generic
572 ;; concepts.
574 ;; - extra-dir-menu ()
576 ;; Return a menu keymap, the items in the keymap will appear at the
577 ;; end of the VC Status menu. The goal is to allow backends to
578 ;; specify extra menu items that appear in the VC Status menu. This
579 ;; makes it possible to provide menu entries for functionality that
580 ;; is specific to a backend and which does not map to any of the VC
581 ;; generic concepts.
583 ;; - conflicted-files (dir)
585 ;; Return the list of files where conflict resolution is needed in
586 ;; the project that contains DIR.
587 ;; FIXME: what should it do with non-text conflicts?
589 ;;; Todo:
591 ;; - Get rid of the "master file" terminology.
593 ;; - Add key-binding for vc-delete-file.
595 ;;;; New Primitives:
597 ;; - deal with push/pull operations.
599 ;;;; Primitives that need changing:
601 ;; - vc-update/vc-merge should deal with VC systems that don't
602 ;; update/merge on a file basis, but on a whole repository basis.
603 ;; vc-update and vc-merge assume the arguments are always files,
604 ;; they don't deal with directories. Make sure the *vc-dir* buffer
605 ;; is updated after these operations.
606 ;; At least bzr, git and hg should benefit from this.
608 ;;;; Improved branch and tag handling:
610 ;; - add a generic mechanism for remembering the current branch names,
611 ;; display the branch name in the mode-line. Replace
612 ;; vc-cvs-sticky-tag with that.
614 ;;;; Internal cleanups:
616 ;; - backends that care about vc-stay-local should try to take it into
617 ;; account for vc-dir. Is this likely to be useful??? YES!
619 ;; - vc-expand-dirs should take a backend parameter and only look for
620 ;; files managed by that backend.
622 ;; - Another important thing: merge all the status-like backend operations.
623 ;; We should remove dir-status, state, and dir-status-files, and
624 ;; replace them with just `status' which takes a fileset and a continuation
625 ;; (like dir-status) and returns a buffer in which the process(es) are run
626 ;; (or nil if it worked synchronously). Hopefully we can define the old
627 ;; 4 operations in term of this one.
629 ;;;; Other
631 ;; - when a file is in `conflict' state, turn on smerge-mode.
633 ;; - figure out what to do with conflicts that are not caused by the
634 ;; file contents, but by metadata or other causes. Example: File A
635 ;; gets renamed to B in one branch and to C in another and you merge
636 ;; the two branches. Or you locally add file FOO and then pull a
637 ;; change that also adds a new file FOO, ...
639 ;; - make it easier to write logs. Maybe C-x 4 a should add to the log
640 ;; buffer, if one is present, instead of adding to the ChangeLog.
642 ;; - When vc-next-action calls vc-checkin it could pre-fill the
643 ;; *vc-log* buffer with some obvious items: the list of files that
644 ;; were added, the list of files that were removed. If the diff is
645 ;; available, maybe it could even call something like
646 ;; `diff-add-change-log-entries-other-window' to create a detailed
647 ;; skeleton for the log...
649 ;; - most vc-dir backends need more work. They might need to
650 ;; provide custom headers, use the `extra' field and deal with all
651 ;; possible VC states.
653 ;; - add a function that calls vc-dir to `find-directory-functions'.
655 ;; - vc-diff, vc-annotate, etc. need to deal better with unregistered
656 ;; files. Now that unregistered and ignored files are shown in
657 ;; vc-dir, it is possible that these commands are called
658 ;; for unregistered/ignored files.
660 ;; - vc-next-action needs work in order to work with multiple
661 ;; backends: `vc-state' returns the state for the default backend,
662 ;; not for the backend in the current *vc-dir* buffer.
664 ;; - vc-dir-kill-dir-status-process should not be specific to dir-status,
665 ;; it should work for other async commands done through vc-do-command
666 ;; as well,
668 ;; - vc-dir toolbar needs more icons.
670 ;; - The backends should avoid using `vc-file-setprop' and `vc-file-getprop'.
672 ;;; Code:
674 (require 'vc-hooks)
675 (require 'vc-dispatcher)
677 (declare-function diff-setup-whitespace "diff-mode" ())
679 (eval-when-compile
680 (require 'dired))
682 (declare-function dired-get-filename "dired" (&optional localp noerror))
683 (declare-function dired-move-to-filename "dired" (&optional err eol))
684 (declare-function dired-marker-regexp "dired" ())
686 (unless (assoc 'vc-parent-buffer minor-mode-alist)
687 (setq minor-mode-alist
688 (cons '(vc-parent-buffer vc-parent-buffer-name)
689 minor-mode-alist)))
691 ;; General customization
693 (defgroup vc nil
694 "Emacs interface to version control systems."
695 :group 'tools)
697 (defcustom vc-initial-comment nil
698 "If non-nil, prompt for initial comment when a file is registered."
699 :type 'boolean
700 :group 'vc)
702 (make-obsolete-variable 'vc-initial-comment "it has no effect." "23.2")
704 (defcustom vc-default-init-revision "1.1"
705 "A string used as the default revision number when a new file is registered.
706 This can be overridden by giving a prefix argument to \\[vc-register]. This
707 can also be overridden by a particular VC backend."
708 :type 'string
709 :group 'vc
710 :version "20.3")
712 (defcustom vc-checkin-switches nil
713 "A string or list of strings specifying extra switches for checkin.
714 These are passed to the checkin program by \\[vc-checkin]."
715 :type '(choice (const :tag "None" nil)
716 (string :tag "Argument String")
717 (repeat :tag "Argument List"
718 :value ("")
719 string))
720 :group 'vc)
722 (defcustom vc-checkout-switches nil
723 "A string or list of strings specifying extra switches for checkout.
724 These are passed to the checkout program by \\[vc-checkout]."
725 :type '(choice (const :tag "None" nil)
726 (string :tag "Argument String")
727 (repeat :tag "Argument List"
728 :value ("")
729 string))
730 :group 'vc)
732 (defcustom vc-register-switches nil
733 "A string or list of strings; extra switches for registering a file.
734 These are passed to the checkin program by \\[vc-register]."
735 :type '(choice (const :tag "None" nil)
736 (string :tag "Argument String")
737 (repeat :tag "Argument List"
738 :value ("")
739 string))
740 :group 'vc)
742 (defcustom vc-diff-switches nil
743 "A string or list of strings specifying switches for diff under VC.
744 When running diff under a given BACKEND, VC uses the first
745 non-nil value of `vc-BACKEND-diff-switches', `vc-diff-switches',
746 and `diff-switches', in that order. Since nil means to check the
747 next variable in the sequence, either of the first two may use
748 the value t to mean no switches at all. `vc-diff-switches'
749 should contain switches that are specific to version control, but
750 not specific to any particular backend."
751 :type '(choice (const :tag "Unspecified" nil)
752 (const :tag "None" t)
753 (string :tag "Argument String")
754 (repeat :tag "Argument List" :value ("") string))
755 :group 'vc
756 :version "21.1")
758 (defcustom vc-log-show-limit 2000
759 "Limit the number of items shown by the VC log commands.
760 Zero means unlimited.
761 Not all VC backends are able to support this feature."
762 :type 'integer
763 :group 'vc)
765 (defcustom vc-allow-async-revert nil
766 "Specifies whether the diff during \\[vc-revert] may be asynchronous.
767 Enabling this option means that you can confirm a revert operation even
768 if the local changes in the file have not been found and displayed yet."
769 :type '(choice (const :tag "No" nil)
770 (const :tag "Yes" t))
771 :group 'vc
772 :version "22.1")
774 ;;;###autoload
775 (defcustom vc-checkout-hook nil
776 "Normal hook (list of functions) run after checking out a file.
777 See `run-hooks'."
778 :type 'hook
779 :group 'vc
780 :version "21.1")
782 ;;;###autoload
783 (defcustom vc-checkin-hook nil
784 "Normal hook (list of functions) run after commit or file checkin.
785 See also `log-edit-done-hook'."
786 :type 'hook
787 :options '(log-edit-comment-to-change-log)
788 :group 'vc)
790 ;;;###autoload
791 (defcustom vc-before-checkin-hook nil
792 "Normal hook (list of functions) run before a commit or a file checkin.
793 See `run-hooks'."
794 :type 'hook
795 :group 'vc)
797 (defcustom vc-revert-show-diff t
798 "If non-nil, `vc-revert' shows a `vc-diff' buffer before querying."
799 :type 'boolean
800 :group 'vc
801 :version "24.1")
803 ;; Header-insertion hair
805 (defcustom vc-static-header-alist
806 '(("\\.c\\'" .
807 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
808 "Associate static header string templates with file types.
809 A \%s in the template is replaced with the first string associated with
810 the file's version control type in `vc-BACKEND-header'."
811 :type '(repeat (cons :format "%v"
812 (regexp :tag "File Type")
813 (string :tag "Header String")))
814 :group 'vc)
816 (defcustom vc-comment-alist
817 '((nroff-mode ".\\\"" ""))
818 "Special comment delimiters for generating VC headers.
819 Add an entry in this list if you need to override the normal `comment-start'
820 and `comment-end' variables. This will only be necessary if the mode language
821 is sensitive to blank lines."
822 :type '(repeat (list :format "%v"
823 (symbol :tag "Mode")
824 (string :tag "Comment Start")
825 (string :tag "Comment End")))
826 :group 'vc)
829 ;; Variables users don't need to see
831 (defvar vc-disable-async-diff nil
832 "VC sets this to t locally to disable some async diff operations.
833 Backends that offer asynchronous diffs should respect this variable
834 in their implementation of vc-BACKEND-diff.")
836 ;; File property caching
838 (defun vc-clear-context ()
839 "Clear all cached file properties."
840 (interactive)
841 (fillarray vc-file-prop-obarray 0))
843 (defmacro with-vc-properties (files form settings)
844 "Execute FORM, then maybe set per-file properties for FILES.
845 If any of FILES is actually a directory, then do the same for all
846 buffers for files in that directory.
847 SETTINGS is an association list of property/value pairs. After
848 executing FORM, set those properties from SETTINGS that have not yet
849 been updated to their corresponding values."
850 (declare (debug t))
851 `(let ((vc-touched-properties (list t))
852 (flist nil))
853 (dolist (file ,files)
854 (if (file-directory-p file)
855 (dolist (buffer (buffer-list))
856 (let ((fname (buffer-file-name buffer)))
857 (when (and fname (string-prefix-p file fname))
858 (push fname flist))))
859 (push file flist)))
860 ,form
861 (dolist (file flist)
862 (dolist (setting ,settings)
863 (let ((property (car setting)))
864 (unless (memq property vc-touched-properties)
865 (put (intern file vc-file-prop-obarray)
866 property (cdr setting))))))))
868 ;;; Code for deducing what fileset and backend to assume
870 (defun vc-backend-for-registration (file)
871 "Return a backend that can be used for registering FILE.
873 If no backend declares itself responsible for FILE, then FILE
874 must not be in a version controlled directory, so try to create a
875 repository, prompting for the directory and the VC backend to
876 use."
877 (catch 'found
878 ;; First try: find a responsible backend, it must be a backend
879 ;; under which FILE is not yet registered.
880 (dolist (backend vc-handled-backends)
881 (and (not (vc-call-backend backend 'registered file))
882 (vc-call-backend backend 'responsible-p file)
883 (throw 'found backend)))
884 ;; no responsible backend
885 (let* ((possible-backends
886 (let (pos)
887 (dolist (crt vc-handled-backends)
888 (when (vc-find-backend-function crt 'create-repo)
889 (push crt pos)))
890 pos))
892 (intern
893 ;; Read the VC backend from the user, only
894 ;; complete with the backends that have the
895 ;; 'create-repo method.
896 (completing-read
897 (format "%s is not in a version controlled directory.\nUse VC backend: " file)
898 (mapcar 'symbol-name possible-backends) nil t)))
899 (repo-dir
900 (let ((def-dir (file-name-directory file)))
901 ;; read the directory where to create the
902 ;; repository, make sure it's a parent of
903 ;; file.
904 (read-file-name
905 (format "create %s repository in: " bk)
906 default-directory def-dir t nil
907 (lambda (arg)
908 (message "arg %s" arg)
909 (and (file-directory-p arg)
910 (string-prefix-p (expand-file-name arg) def-dir)))))))
911 (let ((default-directory repo-dir))
912 (vc-call-backend bk 'create-repo))
913 (throw 'found bk))))
915 (defun vc-responsible-backend (file)
916 "Return the name of a backend system that is responsible for FILE.
918 If FILE is already registered, return the
919 backend of FILE. If FILE is not registered, then the
920 first backend in `vc-handled-backends' that declares itself
921 responsible for FILE is returned."
922 (or (and (not (file-directory-p file)) (vc-backend file))
923 (catch 'found
924 ;; First try: find a responsible backend. If this is for registration,
925 ;; it must be a backend under which FILE is not yet registered.
926 (dolist (backend vc-handled-backends)
927 (and (vc-call-backend backend 'responsible-p file)
928 (throw 'found backend))))
929 (error "No VC backend is responsible for %s" file)))
931 (defun vc-expand-dirs (file-or-dir-list)
932 "Expands directories in a file list specification.
933 Within directories, only files already under version control are noticed."
934 (let ((flattened '()))
935 (dolist (node file-or-dir-list)
936 (when (file-directory-p node)
937 (vc-file-tree-walk
938 node (lambda (f) (when (vc-backend f) (push f flattened)))))
939 (unless (file-directory-p node) (push node flattened)))
940 (nreverse flattened)))
942 (defvar vc-dir-backend)
943 (defvar log-view-vc-backend)
944 (defvar log-edit-vc-backend)
945 (defvar diff-vc-backend)
947 (defun vc-deduce-backend ()
948 (cond ((derived-mode-p 'vc-dir-mode) vc-dir-backend)
949 ((derived-mode-p 'log-view-mode) log-view-vc-backend)
950 ((derived-mode-p 'log-edit-mode) log-edit-vc-backend)
951 ((derived-mode-p 'diff-mode) diff-vc-backend)
952 ;; Maybe we could even use comint-mode rather than shell-mode?
953 ((derived-mode-p 'dired-mode 'shell-mode 'compilation-mode)
954 (vc-responsible-backend default-directory))
955 (vc-mode (vc-backend buffer-file-name))))
957 (declare-function vc-dir-current-file "vc-dir" ())
958 (declare-function vc-dir-deduce-fileset "vc-dir" (&optional state-model-only-files))
960 (defun vc-deduce-fileset (&optional observer allow-unregistered
961 state-model-only-files)
962 "Deduce a set of files and a backend to which to apply an operation.
963 Return (BACKEND FILESET FILESET-ONLY-FILES STATE CHECKOUT-MODEL).
965 If we're in VC-dir mode, FILESET is the list of marked files,
966 or the directory if no files are marked.
967 Otherwise, if in a buffer visiting a version-controlled file,
968 FILESET is a single-file fileset containing that file.
969 Otherwise, if ALLOW-UNREGISTERED is non-nil and the visited file
970 is unregistered, FILESET is a single-file fileset containing it.
971 Otherwise, throw an error.
973 STATE-MODEL-ONLY-FILES if non-nil, means that the caller needs
974 the FILESET-ONLY-FILES STATE and MODEL info. Otherwise, that
975 part may be skipped.
976 BEWARE: this function may change the
977 current buffer."
978 ;; FIXME: OBSERVER is unused. The name is not intuitive and is not
979 ;; documented. It's set to t when called from diff and print-log.
980 (let (backend)
981 (cond
982 ((derived-mode-p 'vc-dir-mode)
983 (vc-dir-deduce-fileset state-model-only-files))
984 ((derived-mode-p 'dired-mode)
985 (if observer
986 (vc-dired-deduce-fileset)
987 (error "State changing VC operations not supported in `dired-mode'")))
988 ((setq backend (vc-backend buffer-file-name))
989 (if state-model-only-files
990 (list backend (list buffer-file-name)
991 (list buffer-file-name)
992 (vc-state buffer-file-name)
993 (vc-checkout-model backend buffer-file-name))
994 (list backend (list buffer-file-name))))
995 ((and (buffer-live-p vc-parent-buffer)
996 ;; FIXME: Why this test? --Stef
997 (or (buffer-file-name vc-parent-buffer)
998 (with-current-buffer vc-parent-buffer
999 (derived-mode-p 'vc-dir-mode))))
1000 (progn ;FIXME: Why not `with-current-buffer'? --Stef.
1001 (set-buffer vc-parent-buffer)
1002 (vc-deduce-fileset observer allow-unregistered state-model-only-files)))
1003 ((not buffer-file-name)
1004 (error "Buffer %s is not associated with a file" (buffer-name)))
1005 ((and allow-unregistered (not (vc-registered buffer-file-name)))
1006 (if state-model-only-files
1007 (list (vc-backend-for-registration (buffer-file-name))
1008 (list buffer-file-name)
1009 (list buffer-file-name)
1010 (when state-model-only-files 'unregistered)
1011 nil)
1012 (list (vc-backend-for-registration (buffer-file-name))
1013 (list buffer-file-name))))
1014 (t (error "File is not under version control")))))
1016 (defun vc-dired-deduce-fileset ()
1017 (let ((backend (vc-responsible-backend default-directory)))
1018 (unless backend (error "Directory not under VC"))
1019 (list backend
1020 (dired-map-over-marks (dired-get-filename nil t) nil))))
1022 (defun vc-ensure-vc-buffer ()
1023 "Make sure that the current buffer visits a version-controlled file."
1024 (cond
1025 ((derived-mode-p 'vc-dir-mode)
1026 (set-buffer (find-file-noselect (vc-dir-current-file))))
1028 (while (and vc-parent-buffer
1029 (buffer-live-p vc-parent-buffer)
1030 ;; Avoid infinite looping when vc-parent-buffer and
1031 ;; current buffer are the same buffer.
1032 (not (eq vc-parent-buffer (current-buffer))))
1033 (set-buffer vc-parent-buffer))
1034 (if (not buffer-file-name)
1035 (error "Buffer %s is not associated with a file" (buffer-name))
1036 (unless (vc-backend buffer-file-name)
1037 (error "File %s is not under version control" buffer-file-name))))))
1039 ;;; Support for the C-x v v command.
1040 ;; This is where all the single-file-oriented code from before the fileset
1041 ;; rewrite lives.
1043 (defsubst vc-editable-p (file)
1044 "Return non-nil if FILE can be edited."
1045 (let ((backend (vc-backend file)))
1046 (and backend
1047 (or (eq (vc-checkout-model backend (list file)) 'implicit)
1048 (memq (vc-state file) '(edited needs-merge conflict))))))
1050 (defun vc-compatible-state (p q)
1051 "Controls which states can be in the same commit."
1053 (eq p q)
1054 (and (member p '(edited added removed)) (member q '(edited added removed)))))
1056 (defun vc-read-backend (prompt)
1057 (intern
1058 (completing-read prompt (mapcar 'symbol-name vc-handled-backends)
1059 nil 'require-match)))
1061 ;; Here's the major entry point.
1063 ;;;###autoload
1064 (defun vc-next-action (verbose)
1065 "Do the next logical version control operation on the current fileset.
1066 This requires that all files in the current VC fileset be in the
1067 same state. If not, signal an error.
1069 For merging-based version control systems:
1070 If every file in the VC fileset is not registered for version
1071 control, register the fileset (but don't commit).
1072 If every work file in the VC fileset is added or changed, pop
1073 up a *vc-log* buffer to commit the fileset.
1074 For a centralized version control system, if any work file in
1075 the VC fileset is out of date, offer to update the fileset.
1077 For old-style locking-based version control systems, like RCS:
1078 If every file is not registered, register the file(s).
1079 If every file is registered and unlocked, check out (lock)
1080 the file(s) for editing.
1081 If every file is locked by you and has changes, pop up a
1082 *vc-log* buffer to check in the changes. If the variable
1083 `vc-keep-workfiles' is non-nil (the default), leave a
1084 read-only copy of each changed file after checking in.
1085 If every file is locked by you and unchanged, unlock them.
1086 If every file is locked by someone else, offer to steal the lock."
1087 (interactive "P")
1088 (let* ((vc-fileset (vc-deduce-fileset nil t 'state-model-only-files))
1089 (backend (car vc-fileset))
1090 (files (nth 1 vc-fileset))
1091 ;; (fileset-only-files (nth 2 vc-fileset))
1092 ;; FIXME: We used to call `vc-recompute-state' here.
1093 (state (nth 3 vc-fileset))
1094 ;; The backend should check that the checkout-model is consistent
1095 ;; among all the `files'.
1096 (model (nth 4 vc-fileset)))
1098 ;; If a buffer has unsaved changes, a checkout would discard those
1099 ;; changes, so treat the buffer as having unlocked changes.
1100 (when (and (not (eq model 'implicit)) (eq state 'up-to-date))
1101 (dolist (file files)
1102 (let ((buffer (get-file-buffer file)))
1103 (and buffer
1104 (buffer-modified-p buffer)
1105 (setq state 'unlocked-changes)))))
1107 ;; Do the right thing.
1108 (cond
1109 ((eq state 'missing)
1110 (error "Fileset files are missing, so cannot be operated on"))
1111 ((eq state 'ignored)
1112 (error "Fileset files are ignored by the version-control system"))
1113 ((or (null state) (eq state 'unregistered))
1114 (vc-register nil vc-fileset))
1115 ;; Files are up-to-date, or need a merge and user specified a revision
1116 ((or (eq state 'up-to-date) (and verbose (eq state 'needs-update)))
1117 (cond
1118 (verbose
1119 ;; Go to a different revision.
1120 (let* ((revision
1121 ;; FIXME: Provide completion.
1122 (read-string "Branch, revision, or backend to move to: "))
1123 (revision-downcase (downcase revision)))
1124 (if (member
1125 revision-downcase
1126 (mapcar (lambda (arg) (downcase (symbol-name arg)))
1127 vc-handled-backends))
1128 (let ((vsym (intern-soft revision-downcase)))
1129 (dolist (file files) (vc-transfer-file file vsym)))
1130 (dolist (file files)
1131 (vc-checkout file (eq model 'implicit) revision)))))
1132 ((not (eq model 'implicit))
1133 ;; check the files out
1134 (dolist (file files) (vc-checkout file t)))
1136 ;; do nothing
1137 (message "Fileset is up-to-date"))))
1138 ;; Files have local changes
1139 ((vc-compatible-state state 'edited)
1140 (let ((ready-for-commit files))
1141 ;; CVS, SVN and bzr don't care about read-only (bug#9781).
1142 ;; RCS does, SCCS might (someone should check...).
1143 (when (memq backend '(RCS SCCS))
1144 ;; If files are edited but read-only, give user a chance to correct.
1145 (dolist (file files)
1146 ;; If committing a mix of removed and edited files, the
1147 ;; fileset has state = 'edited. Rather than checking the
1148 ;; state of each individual file in the fileset, it seems
1149 ;; simplest to just check if the file exists. Bug#9781.
1150 (when (and (file-exists-p file) (not (file-writable-p file)))
1151 ;; Make the file+buffer read-write.
1152 (unless (y-or-n-p (format "%s is edited but read-only; make it writable and continue? " file))
1153 (error "Aborted"))
1154 ;; Maybe we somehow lost permissions on the directory.
1155 (condition-case nil
1156 (set-file-modes file (logior (file-modes file) 128))
1157 (error (error "Unable to make file writable")))
1158 (let ((visited (get-file-buffer file)))
1159 (when visited
1160 (with-current-buffer visited
1161 (read-only-mode -1)))))))
1162 ;; Allow user to revert files with no changes
1163 (save-excursion
1164 (dolist (file files)
1165 (let ((visited (get-file-buffer file)))
1166 ;; For files with locking, if the file does not contain
1167 ;; any changes, just let go of the lock, i.e. revert.
1168 (when (and (not (eq model 'implicit))
1169 (vc-workfile-unchanged-p file)
1170 ;; If buffer is modified, that means the user just
1171 ;; said no to saving it; in that case, don't revert,
1172 ;; because the user might intend to save after
1173 ;; finishing the log entry and committing.
1174 (not (and visited (buffer-modified-p))))
1175 (vc-revert-file file)
1176 (setq ready-for-commit (delete file ready-for-commit))))))
1177 ;; Remaining files need to be committed
1178 (if (not ready-for-commit)
1179 (message "No files remain to be committed")
1180 (if (not verbose)
1181 (vc-checkin ready-for-commit backend)
1182 (let ((new-backend (vc-read-backend "New backend: ")))
1183 (if new-backend
1184 (dolist (file files)
1185 (vc-transfer-file file new-backend))))))))
1186 ;; locked by somebody else (locking VCSes only)
1187 ((stringp state)
1188 ;; In the old days, we computed the revision once and used it on
1189 ;; the single file. Then, for the 2007-2008 fileset rewrite, we
1190 ;; computed the revision once (incorrectly, using a free var) and
1191 ;; used it on all files. To fix the free var bug, we can either
1192 ;; use `(car files)' or do what we do here: distribute the
1193 ;; revision computation among `files'. Although this may be
1194 ;; tedious for those backends where a "revision" is a trans-file
1195 ;; concept, it is nonetheless correct for both those and (more
1196 ;; importantly) for those where "revision" is a per-file concept.
1197 ;; If the intersection of the former group and "locking VCSes" is
1198 ;; non-empty [I vaguely doubt it --ttn], we can reinstate the
1199 ;; pre-computation approach of yore.
1200 (dolist (file files)
1201 (vc-steal-lock
1202 file (if verbose
1203 (read-string (format "%s revision to steal: " file))
1204 (vc-working-revision file))
1205 state)))
1206 ;; conflict
1207 ((eq state 'conflict)
1208 ;; FIXME: Is it really the UI we want to provide?
1209 ;; In my experience, the conflicted files should be marked as resolved
1210 ;; one-by-one when saving the file after resolving the conflicts.
1211 ;; I.e. stating explicitly that the conflicts are resolved is done
1212 ;; very rarely.
1213 (vc-mark-resolved backend files))
1214 ;; needs-update
1215 ((eq state 'needs-update)
1216 (dolist (file files)
1217 (if (yes-or-no-p (format
1218 "%s is not up-to-date. Get latest revision? "
1219 (file-name-nondirectory file)))
1220 (vc-checkout file (eq model 'implicit) t)
1221 (when (and (not (eq model 'implicit))
1222 (yes-or-no-p "Lock this revision? "))
1223 (vc-checkout file t)))))
1224 ;; needs-merge
1225 ((eq state 'needs-merge)
1226 (dolist (file files)
1227 (when (yes-or-no-p (format
1228 "%s is not up-to-date. Merge in changes now? "
1229 (file-name-nondirectory file)))
1230 (vc-maybe-resolve-conflicts
1231 file (vc-call-backend backend 'merge-news file)))))
1233 ;; unlocked-changes
1234 ((eq state 'unlocked-changes)
1235 (dolist (file files)
1236 (when (not (equal buffer-file-name file))
1237 (find-file-other-window file))
1238 (if (save-window-excursion
1239 (vc-diff-internal nil
1240 (cons (car vc-fileset) (cons (cadr vc-fileset) (list file)))
1241 (vc-working-revision file) nil)
1242 (goto-char (point-min))
1243 (let ((inhibit-read-only t))
1244 (insert
1245 (format "Changes to %s since last lock:\n\n" file)))
1246 (not (beep))
1247 (yes-or-no-p (concat "File has unlocked changes. "
1248 "Claim lock retaining changes? ")))
1249 (progn (vc-call-backend backend 'steal-lock file)
1250 (clear-visited-file-modtime)
1251 ;; Must clear any headers here because they wouldn't
1252 ;; show that the file is locked now.
1253 (vc-clear-headers file)
1254 (write-file buffer-file-name)
1255 (vc-mode-line file backend))
1256 (if (not (yes-or-no-p
1257 "Revert to checked-in revision, instead? "))
1258 (error "Checkout aborted")
1259 (vc-revert-buffer-internal t t)
1260 (vc-checkout file t)))))
1261 ;; Unknown fileset state
1263 (error "Fileset is in an unknown state %s" state)))))
1265 (defun vc-create-repo (backend)
1266 "Create an empty repository in the current directory."
1267 (interactive
1268 (list
1269 (intern
1270 (upcase
1271 (completing-read
1272 "Create repository for: "
1273 (mapcar (lambda (b) (list (downcase (symbol-name b)))) vc-handled-backends)
1274 nil t)))))
1275 (vc-call-backend backend 'create-repo))
1277 (declare-function vc-dir-move-to-goal-column "vc-dir" ())
1279 ;;;###autoload
1280 (defun vc-register (&optional set-revision vc-fileset comment)
1281 "Register into a version control system.
1282 If VC-FILESET is given, register the files in that fileset.
1283 Otherwise register the current file.
1284 With prefix argument SET-REVISION, allow user to specify initial revision
1285 level. If COMMENT is present, use that as an initial comment.
1287 The version control system to use is found by cycling through the list
1288 `vc-handled-backends'. The first backend in that list which declares
1289 itself responsible for the file (usually because other files in that
1290 directory are already registered under that backend) will be used to
1291 register the file. If no backend declares itself responsible, the
1292 first backend that could register the file is used."
1293 (interactive "P")
1294 (let* ((fileset-arg (or vc-fileset (vc-deduce-fileset nil t)))
1295 (backend (car fileset-arg))
1296 (files (nth 1 fileset-arg)))
1297 ;; We used to operate on `only-files', but VC wants to provide the
1298 ;; possibility to register directories rather than files only, since
1299 ;; many VCS allow that as well.
1300 (dolist (fname files)
1301 (let ((bname (get-file-buffer fname)))
1302 (unless fname
1303 (setq fname buffer-file-name))
1304 (when (vc-call-backend backend 'registered fname)
1305 (error "This file is already registered"))
1306 ;; Watch out for new buffers of size 0: the corresponding file
1307 ;; does not exist yet, even though buffer-modified-p is nil.
1308 (when bname
1309 (with-current-buffer bname
1310 (when (and (not (buffer-modified-p))
1311 (zerop (buffer-size))
1312 (not (file-exists-p buffer-file-name)))
1313 (set-buffer-modified-p t))
1314 (vc-buffer-sync)))))
1315 (message "Registering %s... " files)
1316 (mapc 'vc-file-clearprops files)
1317 (vc-call-backend backend 'register files
1318 (if set-revision
1319 (read-string (format "Initial revision level for %s: " files))
1320 (vc-call-backend backend 'init-revision))
1321 comment)
1322 (mapc
1323 (lambda (file)
1324 (vc-file-setprop file 'vc-backend backend)
1325 ;; FIXME: This is wrong: it should set `backup-inhibited' in all
1326 ;; the buffers visiting files affected by this `vc-register', not
1327 ;; in the current-buffer.
1328 ;; (unless vc-make-backup-files
1329 ;; (make-local-variable 'backup-inhibited)
1330 ;; (setq backup-inhibited t))
1332 (vc-resynch-buffer file vc-keep-workfiles t))
1333 files)
1334 (when (derived-mode-p 'vc-dir-mode)
1335 (vc-dir-move-to-goal-column))
1336 (message "Registering %s... done" files)))
1338 (defun vc-register-with (backend)
1339 "Register the current file with a specified back end."
1340 (interactive "SBackend: ")
1341 (when (not (member backend vc-handled-backends))
1342 (error "Unknown back end"))
1343 (let ((vc-handled-backends (list backend)))
1344 (call-interactively 'vc-register)))
1346 (defun vc-ignore (file &optional directory remove)
1347 "Ignore FILE under the VCS of DIRECTORY.
1349 Normally, FILE is a wildcard specification that matches the files
1350 to be ignored. When REMOVE is non-nil, remove FILE from the list
1351 of ignored files.
1353 DIRECTORY defaults to `default-directory' and is used to
1354 determine the responsible VC backend.
1356 When called interactively, prompt for a FILE to ignore, unless a
1357 prefix argument is given, in which case prompt for a file FILE to
1358 remove from the list of ignored files."
1359 (interactive
1360 (list
1361 (if (not current-prefix-arg)
1362 (read-file-name "File to ignore: ")
1363 (completing-read
1364 "File to remove: "
1365 (vc-call-backend
1366 (or (vc-responsible-backend default-directory)
1367 (error "Unknown backend"))
1368 'ignore-completion-table default-directory)))
1369 nil current-prefix-arg))
1370 (let* ((directory (or directory default-directory))
1371 (backend (or (vc-responsible-backend default-directory)
1372 (error "Unknown backend"))))
1373 (vc-call-backend backend 'ignore file directory remove)))
1375 (defun vc-default-ignore (backend file &optional directory remove)
1376 "Ignore FILE under the VCS of DIRECTORY (default is `default-directory').
1377 FILE is a file wildcard, relative to the root directory of DIRECTORY.
1378 When called from Lisp code, if DIRECTORY is non-nil, the
1379 repository to use will be deduced by DIRECTORY; if REMOVE is
1380 non-nil, remove FILE from ignored files.
1381 Argument BACKEND is the backend you are using."
1382 (let ((ignore
1383 (vc-call-backend backend 'find-ignore-file (or directory default-directory)))
1384 (pattern (file-relative-name
1385 (expand-file-name file) (file-name-directory file))))
1386 (if remove
1387 (vc--remove-regexp pattern ignore)
1388 (vc--add-line pattern ignore))))
1390 (defun vc-default-ignore-completion-table (backend file)
1391 "Return the list of ignored files under BACKEND."
1392 (vc--read-lines
1393 (vc-call-backend backend 'find-ignore-file file)))
1395 (defun vc--read-lines (file)
1396 "Return a list of lines of FILE."
1397 (with-temp-buffer
1398 (insert-file-contents file)
1399 (split-string (buffer-string) "\n" t)))
1401 ;; Subroutine for `vc-git-ignore' and `vc-hg-ignore'.
1402 (defun vc--add-line (string file)
1403 "Add STRING as a line to FILE."
1404 (with-temp-buffer
1405 (insert-file-contents file)
1406 (unless (re-search-forward (concat "^" (regexp-quote string) "$") nil t)
1407 (goto-char (point-max))
1408 (insert (concat "\n" string))
1409 (write-region (point-min) (point-max) file))))
1411 (defun vc--remove-regexp (regexp file)
1412 "Remove all matching for REGEXP in FILE."
1413 (with-temp-buffer
1414 (insert-file-contents file)
1415 (while (re-search-forward regexp nil t)
1416 (replace-match ""))
1417 (write-region (point-min) (point-max) file)))
1419 (defun vc-checkout (file &optional writable rev)
1420 "Retrieve a copy of the revision REV of FILE.
1421 If WRITABLE is non-nil, make sure the retrieved file is writable.
1422 REV defaults to the latest revision.
1424 After check-out, runs the normal hook `vc-checkout-hook'."
1425 (and writable
1426 (not rev)
1427 (vc-call make-version-backups-p file)
1428 (vc-up-to-date-p file)
1429 (vc-make-version-backup file))
1430 (let ((backend (vc-backend file)))
1431 (with-vc-properties (list file)
1432 (condition-case err
1433 (vc-call-backend backend 'checkout file writable rev)
1434 (file-error
1435 ;; Maybe the backend is not installed ;-(
1436 (when writable
1437 (let ((buf (get-file-buffer file)))
1438 (when buf (with-current-buffer buf (read-only-mode -1)))))
1439 (signal (car err) (cdr err))))
1440 `((vc-state . ,(if (or (eq (vc-checkout-model backend (list file)) 'implicit)
1441 (not writable))
1442 (if (vc-call-backend backend 'latest-on-branch-p file)
1443 'up-to-date
1444 'needs-update)
1445 'edited))
1446 (vc-checkout-time . ,(nth 5 (file-attributes file))))))
1447 (vc-resynch-buffer file t t)
1448 (run-hooks 'vc-checkout-hook))
1450 (defun vc-mark-resolved (backend files)
1451 (prog1 (with-vc-properties
1452 files
1453 (vc-call-backend backend 'mark-resolved files)
1454 ;; FIXME: Is this TRTD? Might not be.
1455 `((vc-state . edited)))
1456 (message
1457 (substitute-command-keys
1458 "Conflicts have been resolved in %s. \
1459 Type \\[vc-next-action] to check in changes.")
1460 (if (> (length files) 1)
1461 (format "%d files" (length files))
1462 "this file"))))
1464 (defun vc-steal-lock (file rev owner)
1465 "Steal the lock on FILE."
1466 (let (file-description)
1467 (if rev
1468 (setq file-description (format "%s:%s" file rev))
1469 (setq file-description file))
1470 (when (not (yes-or-no-p (format "Steal the lock on %s from %s? "
1471 file-description owner)))
1472 (error "Steal canceled"))
1473 (message "Stealing lock on %s..." file)
1474 (with-vc-properties
1475 (list file)
1476 (vc-call steal-lock file rev)
1477 `((vc-state . edited)))
1478 (vc-resynch-buffer file t t)
1479 (message "Stealing lock on %s...done" file)
1480 ;; Write mail after actually stealing, because if the stealing
1481 ;; goes wrong, we don't want to send any mail.
1482 (compose-mail owner (format "Stolen lock on %s" file-description))
1483 (setq default-directory (expand-file-name "~/"))
1484 (goto-char (point-max))
1485 (insert
1486 (format "I stole the lock on %s, " file-description)
1487 (current-time-string)
1488 ".\n")
1489 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
1491 (defun vc-checkin (files backend &optional rev comment initial-contents)
1492 "Check in FILES.
1493 The optional argument REV may be a string specifying the new revision
1494 level (strongly deprecated). COMMENT is a comment
1495 string; if omitted, a buffer is popped up to accept a comment. If
1496 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial contents
1497 of the log entry buffer.
1499 If `vc-keep-workfiles' is nil, FILE is deleted afterwards, provided
1500 that the version control system supports this mode of operation.
1502 Runs the normal hooks `vc-before-checkin-hook' and `vc-checkin-hook'."
1503 (when vc-before-checkin-hook
1504 (run-hooks 'vc-before-checkin-hook))
1505 (vc-start-logentry
1506 files comment initial-contents
1507 "Enter a change comment."
1508 "*vc-log*"
1509 (lambda ()
1510 (vc-call-backend backend 'log-edit-mode))
1511 (lambda (files comment)
1512 (message "Checking in %s..." (vc-delistify files))
1513 ;; "This log message intentionally left almost blank".
1514 ;; RCS 5.7 gripes about white-space-only comments too.
1515 (or (and comment (string-match "[^\t\n ]" comment))
1516 (setq comment "*** empty log message ***"))
1517 (with-vc-properties
1518 files
1519 ;; We used to change buffers to get local value of
1520 ;; vc-checkin-switches, but 'the' local buffer is
1521 ;; not a well-defined concept for filesets.
1522 (progn
1523 (vc-call-backend backend 'checkin files rev comment)
1524 (mapc 'vc-delete-automatic-version-backups files))
1525 `((vc-state . up-to-date)
1526 (vc-checkout-time . ,(nth 5 (file-attributes file)))
1527 (vc-working-revision . nil)))
1528 (message "Checking in %s...done" (vc-delistify files)))
1529 'vc-checkin-hook
1530 backend))
1532 ;;; Additional entry points for examining version histories
1534 ;; (defun vc-default-diff-tree (backend dir rev1 rev2)
1535 ;; "List differences for all registered files at and below DIR.
1536 ;; The meaning of REV1 and REV2 is the same as for `vc-revision-diff'."
1537 ;; ;; This implementation does an explicit tree walk, and calls
1538 ;; ;; vc-BACKEND-diff directly for each file. An optimization
1539 ;; ;; would be to use `vc-diff-internal', so that diffs can be local,
1540 ;; ;; and to call it only for files that are actually changed.
1541 ;; ;; However, this is expensive for some backends, and so it is left
1542 ;; ;; to backend-specific implementations.
1543 ;; (setq default-directory dir)
1544 ;; (vc-file-tree-walk
1545 ;; default-directory
1546 ;; (lambda (f)
1547 ;; (vc-run-delayed
1548 ;; (let ((coding-system-for-read (vc-coding-system-for-diff f)))
1549 ;; (message "Looking at %s" f)
1550 ;; (vc-call-backend (vc-backend f)
1551 ;; 'diff (list f) rev1 rev2))))))
1553 (defvar vc-coding-system-inherit-eol t
1554 "When non-nil, inherit the EOL format for reading Diff output from the file.
1556 Used in `vc-coding-system-for-diff' to determine the EOL format to use
1557 for reading Diff output for a file. If non-nil, the EOL format is
1558 inherited from the file itself.
1559 Set this variable to nil if your Diff tool might use a different
1560 EOL. Then Emacs will auto-detect the EOL format in Diff output, which
1561 gives better results.") ;; Cf. bug#4451.
1563 (defun vc-coding-system-for-diff (file)
1564 "Return the coding system for reading diff output for FILE."
1565 (or coding-system-for-read
1566 ;; if we already have this file open,
1567 ;; use the buffer's coding system
1568 (let ((buf (find-buffer-visiting file)))
1569 (when buf (with-current-buffer buf
1570 (if vc-coding-system-inherit-eol
1571 buffer-file-coding-system
1572 ;; Don't inherit the EOL part of the coding-system,
1573 ;; because some Diff tools may choose to use
1574 ;; a different one. bug#4451.
1575 (coding-system-base buffer-file-coding-system)))))
1576 ;; otherwise, try to find one based on the file name
1577 (car (find-operation-coding-system 'insert-file-contents file))
1578 ;; and a final fallback
1579 'undecided))
1581 (defun vc-switches (backend op)
1582 "Return a list of vc-BACKEND switches for operation OP.
1583 BACKEND is a symbol such as `CVS', which will be downcased.
1584 OP is a symbol such as `diff'.
1586 In decreasing order of preference, return the value of:
1587 vc-BACKEND-OP-switches (e.g. `vc-cvs-diff-switches');
1588 vc-OP-switches (e.g. `vc-diff-switches'); or, in the case of
1589 diff only, `diff-switches'.
1591 If the chosen value is not a string or a list, return nil.
1592 This is so that you may set, e.g. `vc-svn-diff-switches' to t in order
1593 to override the value of `vc-diff-switches' and `diff-switches'."
1594 (let ((switches
1595 (or (when backend
1596 (let ((sym (vc-make-backend-sym
1597 backend (intern (concat (symbol-name op)
1598 "-switches")))))
1599 (when (boundp sym) (symbol-value sym))))
1600 (let ((sym (intern (format "vc-%s-switches" (symbol-name op)))))
1601 (when (boundp sym) (symbol-value sym)))
1602 (cond
1603 ((eq op 'diff) diff-switches)))))
1604 (if (stringp switches) (list switches)
1605 ;; If not a list, return nil.
1606 ;; This is so we can set vc-diff-switches to t to override
1607 ;; any switches in diff-switches.
1608 (when (listp switches) switches))))
1610 ;; Old def for compatibility with Emacs-21.[123].
1611 (defmacro vc-diff-switches-list (backend)
1612 (declare (obsolete vc-switches "22.1"))
1613 `(vc-switches ',backend 'diff))
1615 (defun vc-diff-finish (buffer messages)
1616 ;; The empty sync output case has already been handled, so the only
1617 ;; possibility of an empty output is for an async process.
1618 (when (buffer-live-p buffer)
1619 (let ((window (get-buffer-window buffer t))
1620 (emptyp (zerop (buffer-size buffer))))
1621 (with-current-buffer buffer
1622 (and messages emptyp
1623 (let ((inhibit-read-only t))
1624 (insert (cdr messages) ".\n")
1625 (message "%s" (cdr messages))))
1626 (diff-setup-whitespace)
1627 (goto-char (point-min))
1628 (when window
1629 (shrink-window-if-larger-than-buffer window)))
1630 (when (and messages (not emptyp))
1631 (message "%sdone" (car messages))))))
1633 (defvar vc-diff-added-files nil
1634 "If non-nil, diff added files by comparing them to /dev/null.")
1636 (defun vc-diff-internal (async vc-fileset rev1 rev2 &optional verbose buffer)
1637 "Report diffs between two revisions of a fileset.
1638 Output goes to the buffer BUFFER, which defaults to *vc-diff*.
1639 BUFFER, if non-nil, should be a buffer or a buffer name.
1640 Return t if the buffer had changes, nil otherwise."
1641 (unless buffer
1642 (setq buffer "*vc-diff*"))
1643 (let* ((files (cadr vc-fileset))
1644 (messages (cons (format "Finding changes in %s..."
1645 (vc-delistify files))
1646 (format "No changes between %s and %s"
1647 (or rev1 "working revision")
1648 (or rev2 "workfile"))))
1649 ;; Set coding system based on the first file. It's a kluge,
1650 ;; but the only way to set it for each file included would
1651 ;; be to call the back end separately for each file.
1652 (coding-system-for-read
1653 (if files (vc-coding-system-for-diff (car files)) 'undecided)))
1654 ;; On MS-Windows and MS-DOS, Diff is likely to produce DOS-style
1655 ;; EOLs, which will look ugly if (car files) happens to have Unix
1656 ;; EOLs.
1657 (if (memq system-type '(windows-nt ms-dos))
1658 (setq coding-system-for-read
1659 (coding-system-change-eol-conversion coding-system-for-read
1660 'dos)))
1661 (vc-setup-buffer buffer)
1662 (message "%s" (car messages))
1663 ;; Many backends don't handle well the case of a file that has been
1664 ;; added but not yet committed to the repo (notably CVS and Subversion).
1665 ;; Do that work here so the backends don't have to futz with it. --ESR
1667 ;; Actually most backends (including CVS) have options to control the
1668 ;; behavior since which one is better depends on the user and on the
1669 ;; situation). Worse yet: this code does not handle the case where
1670 ;; `file' is a directory which contains added files.
1671 ;; I made it conditional on vc-diff-added-files but it should probably
1672 ;; just be removed (or copied/moved to specific backends). --Stef.
1673 (when vc-diff-added-files
1674 (let ((filtered '())
1675 process-file-side-effects)
1676 (dolist (file files)
1677 (if (or (file-directory-p file)
1678 (not (string= (vc-working-revision file) "0")))
1679 (push file filtered)
1680 ;; This file is added but not yet committed;
1681 ;; there is no repository version to diff against.
1682 (if (or rev1 rev2)
1683 (error "No revisions of %s exist" file)
1684 ;; We regard this as "changed".
1685 ;; Diff it against /dev/null.
1686 (apply 'vc-do-command buffer
1687 1 "diff" file
1688 (append (vc-switches nil 'diff) '("/dev/null"))))))
1689 (setq files (nreverse filtered))))
1690 (let ((vc-disable-async-diff (not async)))
1691 (vc-call-backend (car vc-fileset) 'diff files rev1 rev2 buffer))
1692 (set-buffer buffer)
1693 (diff-mode)
1694 (set (make-local-variable 'diff-vc-backend) (car vc-fileset))
1695 (set (make-local-variable 'revert-buffer-function)
1696 (lambda (_ignore-auto _noconfirm)
1697 (vc-diff-internal async vc-fileset rev1 rev2 verbose)))
1698 ;; Make the *vc-diff* buffer read only, the diff-mode key
1699 ;; bindings are nicer for read only buffers. pcl-cvs does the
1700 ;; same thing.
1701 (setq buffer-read-only t)
1702 (if (and (zerop (buffer-size))
1703 (not (get-buffer-process (current-buffer))))
1704 ;; Treat this case specially so as not to pop the buffer.
1705 (progn
1706 (message "%s" (cdr messages))
1707 nil)
1708 ;; Display the buffer, but at the end because it can change point.
1709 (pop-to-buffer (current-buffer))
1710 ;; The diff process may finish early, so call `vc-diff-finish'
1711 ;; after `pop-to-buffer'; the former assumes the diff buffer is
1712 ;; shown in some window.
1713 (let ((buf (current-buffer)))
1714 (vc-run-delayed (vc-diff-finish buf (when verbose messages))))
1715 ;; In the async case, we return t even if there are no differences
1716 ;; because we don't know that yet.
1717 t)))
1719 (defun vc-read-revision (prompt &optional files backend default initial-input)
1720 (cond
1721 ((null files)
1722 (let ((vc-fileset (vc-deduce-fileset t))) ;FIXME: why t? --Stef
1723 (setq files (cadr vc-fileset))
1724 (setq backend (car vc-fileset))))
1725 ((null backend) (setq backend (vc-backend (car files)))))
1726 (let ((completion-table
1727 (vc-call-backend backend 'revision-completion-table files)))
1728 (if completion-table
1729 (completing-read prompt completion-table
1730 nil nil initial-input nil default)
1731 (read-string prompt initial-input nil default))))
1733 (defun vc-diff-build-argument-list-internal ()
1734 "Build argument list for calling internal diff functions."
1735 (let* ((vc-fileset (vc-deduce-fileset t)) ;FIXME: why t? --Stef
1736 (files (cadr vc-fileset))
1737 (backend (car vc-fileset))
1738 (first (car files))
1739 (rev1-default nil)
1740 (rev2-default nil))
1741 (cond
1742 ;; someday we may be able to do revision completion on non-singleton
1743 ;; filesets, but not yet.
1744 ((/= (length files) 1)
1745 nil)
1746 ;; if it's a directory, don't supply any revision default
1747 ((file-directory-p first)
1748 nil)
1749 ;; if the file is not up-to-date, use working revision as older revision
1750 ((not (vc-up-to-date-p first))
1751 (setq rev1-default (vc-working-revision first)))
1752 ;; if the file is not locked, use last revision and current source as defaults
1754 (setq rev1-default (ignore-errors ;If `previous-revision' doesn't work.
1755 (vc-call-backend backend 'previous-revision first
1756 (vc-working-revision first))))
1757 (when (string= rev1-default "") (setq rev1-default nil))))
1758 ;; construct argument list
1759 (let* ((rev1-prompt (if rev1-default
1760 (concat "Older revision (default "
1761 rev1-default "): ")
1762 "Older revision: "))
1763 (rev2-prompt (concat "Newer revision (default "
1764 (or rev2-default "current source") "): "))
1765 (rev1 (vc-read-revision rev1-prompt files backend rev1-default))
1766 (rev2 (vc-read-revision rev2-prompt files backend rev2-default)))
1767 (when (string= rev1 "") (setq rev1 nil))
1768 (when (string= rev2 "") (setq rev2 nil))
1769 (list files rev1 rev2))))
1771 ;;;###autoload
1772 (defun vc-version-diff (_files rev1 rev2)
1773 "Report diffs between revisions of the fileset in the repository history."
1774 (interactive (vc-diff-build-argument-list-internal))
1775 ;; All that was just so we could do argument completion!
1776 (when (and (not rev1) rev2)
1777 (error "Not a valid revision range"))
1778 ;; Yes, it's painful to call (vc-deduce-fileset) again. Alas, the
1779 ;; placement rules for (interactive) don't actually leave us a choice.
1780 (vc-diff-internal t (vc-deduce-fileset t) rev1 rev2
1781 (called-interactively-p 'interactive)))
1783 ;;;###autoload
1784 (defun vc-diff (&optional historic not-urgent)
1785 "Display diffs between file revisions.
1786 Normally this compares the currently selected fileset with their
1787 working revisions. With a prefix argument HISTORIC, it reads two revision
1788 designators specifying which revisions to compare.
1790 The optional argument NOT-URGENT non-nil means it is ok to say no to
1791 saving the buffer."
1792 (interactive (list current-prefix-arg t))
1793 (if historic
1794 (call-interactively 'vc-version-diff)
1795 (when buffer-file-name (vc-buffer-sync not-urgent))
1796 (vc-diff-internal t (vc-deduce-fileset t) nil nil
1797 (called-interactively-p 'interactive))))
1799 (declare-function ediff-load-version-control "ediff" (&optional silent))
1800 (declare-function ediff-vc-internal "ediff-vers"
1801 (rev1 rev2 &optional startup-hooks))
1803 ;;;###autoload
1804 (defun vc-version-ediff (files rev1 rev2)
1805 "Show differences between revisions of the fileset in the
1806 repository history using ediff."
1807 (interactive (vc-diff-build-argument-list-internal))
1808 ;; All that was just so we could do argument completion!
1809 (when (and (not rev1) rev2)
1810 (error "Not a valid revision range"))
1812 (message "%s" (format "Finding changes in %s..." (vc-delistify files)))
1814 ;; Functions ediff-(vc|rcs)-internal use "" instead of nil.
1815 (when (null rev1) (setq rev1 ""))
1816 (when (null rev2) (setq rev2 ""))
1818 (cond
1819 ;; FIXME We only support running ediff on one file for now.
1820 ;; We could spin off an ediff session per file in the file set.
1821 ((= (length files) 1)
1822 (require 'ediff)
1823 (ediff-load-version-control) ; loads ediff-vers
1824 (find-file (car files)) ;FIXME: find-file from Elisp is bad.
1825 (ediff-vc-internal rev1 rev2 nil))
1827 (error "More than one file is not supported"))))
1829 ;;;###autoload
1830 (defun vc-ediff (historic &optional not-urgent)
1831 "Display diffs between file revisions using ediff.
1832 Normally this compares the currently selected fileset with their
1833 working revisions. With a prefix argument HISTORIC, it reads two revision
1834 designators specifying which revisions to compare.
1836 The optional argument NOT-URGENT non-nil means it is ok to say no to
1837 saving the buffer."
1838 (interactive (list current-prefix-arg t))
1839 (if historic
1840 (call-interactively 'vc-version-ediff)
1841 (when buffer-file-name (vc-buffer-sync not-urgent))
1842 (vc-version-ediff (cadr (vc-deduce-fileset t)) nil nil)))
1844 ;;;###autoload
1845 (defun vc-root-diff (historic &optional not-urgent)
1846 "Display diffs between VC-controlled whole tree revisions.
1847 Normally, this compares the tree corresponding to the current
1848 fileset with the working revision.
1849 With a prefix argument HISTORIC, prompt for two revision
1850 designators specifying which revisions to compare.
1852 The optional argument NOT-URGENT non-nil means it is ok to say no to
1853 saving the buffer."
1854 (interactive (list current-prefix-arg t))
1855 (if historic
1856 ;; FIXME: this does not work right, `vc-version-diff' ends up
1857 ;; calling `vc-deduce-fileset' to find the files to diff, and
1858 ;; that's not what we want here, we want the diff for the VC root dir.
1859 (call-interactively 'vc-version-diff)
1860 (when buffer-file-name (vc-buffer-sync not-urgent))
1861 (let ((backend (vc-deduce-backend))
1862 (default-directory default-directory)
1863 rootdir working-revision)
1864 (if backend
1865 (setq rootdir (vc-call-backend backend 'root default-directory))
1866 (setq rootdir (read-directory-name "Directory for VC root-diff: "))
1867 (setq backend (vc-responsible-backend rootdir))
1868 (if backend
1869 (setq default-directory rootdir)
1870 (error "Directory is not version controlled")))
1871 (setq working-revision (vc-working-revision rootdir))
1872 ;; VC diff for the root directory produces output that is
1873 ;; relative to it. Bind default-directory to the root directory
1874 ;; here, this way the *vc-diff* buffer is setup correctly, so
1875 ;; relative file names work.
1876 (let ((default-directory rootdir))
1877 (vc-diff-internal
1878 t (list backend (list rootdir) working-revision) nil nil
1879 (called-interactively-p 'interactive))))))
1881 ;;;###autoload
1882 (defun vc-revision-other-window (rev)
1883 "Visit revision REV of the current file in another window.
1884 If the current file is named `F', the revision is named `F.~REV~'.
1885 If `F.~REV~' already exists, use it instead of checking it out again."
1886 (interactive
1887 (save-current-buffer
1888 (vc-ensure-vc-buffer)
1889 (list
1890 (vc-read-revision "Revision to visit (default is working revision): "
1891 (list buffer-file-name)))))
1892 (vc-ensure-vc-buffer)
1893 (let* ((file buffer-file-name)
1894 (revision (if (string-equal rev "")
1895 (vc-working-revision file)
1896 rev)))
1897 (switch-to-buffer-other-window (vc-find-revision file revision))))
1899 (defun vc-find-revision (file revision &optional backend)
1900 "Read REVISION of FILE into a buffer and return the buffer.
1901 Use BACKEND as the VC backend if specified."
1902 (let ((automatic-backup (vc-version-backup-file-name file revision))
1903 (filebuf (or (get-file-buffer file) (current-buffer)))
1904 (filename (vc-version-backup-file-name file revision 'manual)))
1905 (unless (file-exists-p filename)
1906 (if (file-exists-p automatic-backup)
1907 (rename-file automatic-backup filename nil)
1908 (message "Checking out %s..." filename)
1909 (with-current-buffer filebuf
1910 (let ((failed t))
1911 (unwind-protect
1912 (let ((coding-system-for-read 'no-conversion)
1913 (coding-system-for-write 'no-conversion))
1914 (with-temp-file filename
1915 (let ((outbuf (current-buffer)))
1916 ;; Change buffer to get local value of
1917 ;; vc-checkout-switches.
1918 (with-current-buffer filebuf
1919 (if backend
1920 (vc-call-backend backend 'find-revision file revision outbuf)
1921 (vc-call find-revision file revision outbuf)))))
1922 (setq failed nil))
1923 (when (and failed (file-exists-p filename))
1924 (delete-file filename))))
1925 (vc-mode-line file))
1926 (message "Checking out %s...done" filename)))
1927 (let ((result-buf (find-file-noselect filename)))
1928 (with-current-buffer result-buf
1929 ;; Set the parent buffer so that things like
1930 ;; C-x v g, C-x v l, ... etc work.
1931 (set (make-local-variable 'vc-parent-buffer) filebuf))
1932 result-buf)))
1934 ;; Header-insertion code
1936 ;;;###autoload
1937 (defun vc-insert-headers ()
1938 "Insert headers into a file for use with a version control system.
1939 Headers desired are inserted at point, and are pulled from
1940 the variable `vc-BACKEND-header'."
1941 (interactive)
1942 (vc-ensure-vc-buffer)
1943 (save-excursion
1944 (save-restriction
1945 (widen)
1946 (when (or (not (vc-check-headers))
1947 (y-or-n-p "Version headers already exist. Insert another set? "))
1948 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
1949 (comment-start-vc (or (car delims) comment-start "#"))
1950 (comment-end-vc (or (car (cdr delims)) comment-end ""))
1951 (hdsym (vc-make-backend-sym (vc-backend buffer-file-name)
1952 'header))
1953 (hdstrings (and (boundp hdsym) (symbol-value hdsym))))
1954 (dolist (s hdstrings)
1955 (insert comment-start-vc "\t" s "\t"
1956 comment-end-vc "\n"))
1957 (when vc-static-header-alist
1958 (dolist (f vc-static-header-alist)
1959 (when (string-match (car f) buffer-file-name)
1960 (insert (format (cdr f) (car hdstrings)))))))))))
1962 (defun vc-clear-headers (&optional file)
1963 "Clear all version headers in the current buffer (or FILE).
1964 The headers are reset to their non-expanded form."
1965 (let* ((filename (or file buffer-file-name))
1966 (visited (find-buffer-visiting filename))
1967 (backend (vc-backend filename)))
1968 (when (vc-find-backend-function backend 'clear-headers)
1969 (if visited
1970 (let ((context (vc-buffer-context)))
1971 ;; save-excursion may be able to relocate point and mark
1972 ;; properly. If it fails, vc-restore-buffer-context
1973 ;; will give it a second try.
1974 (save-excursion
1975 (vc-call-backend backend 'clear-headers))
1976 (vc-restore-buffer-context context))
1977 (set-buffer (find-file-noselect filename))
1978 (vc-call-backend backend 'clear-headers)
1979 (kill-buffer filename)))))
1981 (defun vc-modify-change-comment (files rev oldcomment)
1982 "Edit the comment associated with the given files and revision."
1983 ;; Less of a kluge than it looks like; log-view mode only passes
1984 ;; this function a singleton list. Arguments left in this form in
1985 ;; case the more general operation ever becomes meaningful.
1986 (let ((backend (vc-responsible-backend (car files))))
1987 (vc-start-logentry
1988 files oldcomment t
1989 "Enter a replacement change comment."
1990 "*vc-log*"
1991 (lambda () (vc-call-backend backend 'log-edit-mode))
1992 (lambda (files comment)
1993 (vc-call-backend backend
1994 'modify-change-comment files rev comment)))))
1996 ;;;###autoload
1997 (defun vc-merge ()
1998 "Perform a version control merge operation.
1999 You must be visiting a version controlled file, or in a `vc-dir' buffer.
2000 On a distributed version control system, this runs a \"merge\"
2001 operation to incorporate changes from another branch onto the
2002 current branch, prompting for an argument list.
2004 On a non-distributed version control system, this merges changes
2005 between two revisions into the current fileset. This asks for
2006 two revisions to merge from in the minibuffer. If the first
2007 revision is a branch number, then merge all changes from that
2008 branch. If the first revision is empty, merge the most recent
2009 changes from the current branch."
2010 (interactive)
2011 (let* ((vc-fileset (vc-deduce-fileset t))
2012 (backend (car vc-fileset))
2013 (files (cadr vc-fileset)))
2014 (cond
2015 ;; If a branch-merge operation is defined, use it.
2016 ((vc-find-backend-function backend 'merge-branch)
2017 (vc-call-backend backend 'merge-branch))
2018 ;; Otherwise, do a per-file merge.
2019 ((vc-find-backend-function backend 'merge)
2020 (vc-buffer-sync)
2021 (dolist (file files)
2022 (let* ((state (vc-state file))
2023 first-revision second-revision status)
2024 (cond
2025 ((stringp state) ;; Locking VCses only
2026 (error "File %s is locked by %s" file state))
2027 ((not (vc-editable-p file))
2028 (vc-checkout file t)))
2029 (setq first-revision
2030 (vc-read-revision
2031 (concat "Merge " file
2032 " from branch or revision "
2033 "(default news on current branch): ")
2034 (list file)
2035 backend))
2036 (cond
2037 ((string= first-revision "")
2038 (setq status (vc-call-backend backend 'merge-news file)))
2040 (if (not (vc-branch-p first-revision))
2041 (setq second-revision
2042 (vc-read-revision
2043 "Second revision: "
2044 (list file) backend nil
2045 ;; FIXME: This is CVS/RCS/SCCS specific.
2046 (concat (vc-branch-part first-revision) ".")))
2047 ;; We want to merge an entire branch. Set revisions
2048 ;; accordingly, so that vc-BACKEND-merge understands us.
2049 (setq second-revision first-revision)
2050 ;; first-revision must be the starting point of the branch
2051 (setq first-revision (vc-branch-part first-revision)))
2052 (setq status (vc-call-backend backend 'merge file
2053 first-revision second-revision))))
2054 (vc-maybe-resolve-conflicts file status "WORKFILE" "MERGE SOURCE"))))
2056 (error "Sorry, merging is not implemented for %s" backend)))))
2059 (defun vc-maybe-resolve-conflicts (file status &optional _name-A _name-B)
2060 (vc-resynch-buffer file t (not (buffer-modified-p)))
2061 (if (zerop status) (message "Merge successful")
2062 (smerge-mode 1)
2063 (message "File contains conflicts.")))
2065 ;;;###autoload
2066 (defalias 'vc-resolve-conflicts 'smerge-ediff)
2068 ;; TODO: This is OK but maybe we could integrate it better.
2069 ;; E.g. it could be run semi-automatically (via a prompt?) when saving a file
2070 ;; that was conflicted (i.e. upon mark-resolved).
2071 ;; FIXME: should we add an "other-window" version? Or maybe we should
2072 ;; hook it inside find-file so it automatically works for
2073 ;; find-file-other-window as well. E.g. find-file could use a new
2074 ;; `default-next-file' variable for its default file (M-n), and
2075 ;; we could then set it upon mark-resolve, so C-x C-s C-x C-f M-n would
2076 ;; automatically offer the next conflicted file.
2077 (defun vc-find-conflicted-file ()
2078 "Visit the next conflicted file in the current project."
2079 (interactive)
2080 (let* ((backend (or (if buffer-file-name (vc-backend buffer-file-name))
2081 (vc-responsible-backend default-directory)
2082 (error "No VC backend")))
2083 (files (vc-call-backend backend
2084 'conflicted-files default-directory)))
2085 ;; Don't try and visit the current file.
2086 (if (equal (car files) buffer-file-name) (pop files))
2087 (if (null files)
2088 (message "No more conflicted files")
2089 (find-file (pop files))
2090 (message "%s more conflicted files after this one"
2091 (if files (length files) "No")))))
2093 ;; Named-configuration entry points
2095 (defun vc-tag-precondition (dir)
2096 "Scan the tree below DIR, looking for files not up-to-date.
2097 If any file is not up-to-date, return the name of the first such file.
2098 \(This means, neither tag creation nor retrieval is allowed.\)
2099 If one or more of the files are currently visited, return `visited'.
2100 Otherwise, return nil."
2101 (let ((status nil))
2102 (catch 'vc-locked-example
2103 (vc-file-tree-walk
2105 (lambda (f)
2106 (if (not (vc-up-to-date-p f)) (throw 'vc-locked-example f)
2107 (when (get-file-buffer f) (setq status 'visited)))))
2108 status)))
2110 ;;;###autoload
2111 (defun vc-create-tag (dir name branchp)
2112 "Descending recursively from DIR, make a tag called NAME.
2113 For each registered file, the working revision becomes part of
2114 the named configuration. If the prefix argument BRANCHP is
2115 given, the tag is made as a new branch and the files are
2116 checked out in that new branch."
2117 (interactive
2118 (let ((granularity
2119 (vc-call-backend (vc-responsible-backend default-directory)
2120 'revision-granularity)))
2121 (list
2122 (if (eq granularity 'repository)
2123 ;; For VC's that do not work at file level, it's pointless
2124 ;; to ask for a directory, branches are created at repository level.
2125 default-directory
2126 (read-directory-name "Directory: " default-directory default-directory t))
2127 (read-string (if current-prefix-arg "New branch name: " "New tag name: "))
2128 current-prefix-arg)))
2129 (message "Making %s... " (if branchp "branch" "tag"))
2130 (when (file-directory-p dir) (setq dir (file-name-as-directory dir)))
2131 (vc-call-backend (vc-responsible-backend dir)
2132 'create-tag dir name branchp)
2133 (vc-resynch-buffer dir t t t)
2134 (message "Making %s... done" (if branchp "branch" "tag")))
2136 ;;;###autoload
2137 (defun vc-retrieve-tag (dir name)
2138 "Descending recursively from DIR, retrieve the tag called NAME.
2139 If NAME is empty, it refers to the latest revisions.
2140 If locking is used for the files in DIR, then there must not be any
2141 locked files at or below DIR (but if NAME is empty, locked files are
2142 allowed and simply skipped)."
2143 (interactive
2144 (let ((granularity
2145 (vc-call-backend (vc-responsible-backend default-directory)
2146 'revision-granularity)))
2147 (list
2148 (if (eq granularity 'repository)
2149 ;; For VC's that do not work at file level, it's pointless
2150 ;; to ask for a directory, branches are created at repository level.
2151 default-directory
2152 (read-directory-name "Directory: " default-directory default-directory t))
2153 (read-string "Tag name to retrieve (default latest revisions): "))))
2154 (let ((update (yes-or-no-p "Update any affected buffers? "))
2155 (msg (if (or (not name) (string= name ""))
2156 (format "Updating %s... " (abbreviate-file-name dir))
2157 (format "Retrieving tag into %s... "
2158 (abbreviate-file-name dir)))))
2159 (message "%s" msg)
2160 (vc-call-backend (vc-responsible-backend dir)
2161 'retrieve-tag dir name update)
2162 (vc-resynch-buffer dir t t t)
2163 (message "%s" (concat msg "done"))))
2166 ;; Miscellaneous other entry points
2168 ;; FIXME: this should be a defcustom
2169 ;; FIXME: maybe add another choice:
2170 ;; `root-directory' (or somesuch), which would mean show a short log
2171 ;; for the root directory.
2172 (defvar vc-log-short-style '(directory)
2173 "Whether or not to show a short log.
2174 If it contains `directory' then if the fileset contains a directory show a short log.
2175 If it contains `file' then show short logs for files.
2176 Not all VC backends support short logs!")
2178 (defvar log-view-vc-fileset)
2180 (defun vc-print-log-setup-buttons (working-revision is-start-revision limit pl-return)
2181 "Insert at the end of the current buffer buttons to show more log entries.
2182 In the new log, leave point at WORKING-REVISION (if non-nil).
2183 LIMIT is the number of entries currently shown.
2184 Does nothing if IS-START-REVISION is non-nil, or if LIMIT is nil,
2185 or if PL-RETURN is 'limit-unsupported."
2186 (when (and limit (not (eq 'limit-unsupported pl-return))
2187 (not is-start-revision))
2188 (goto-char (point-max))
2189 (insert "\n")
2190 (insert-text-button "Show 2X entries"
2191 'action (lambda (&rest _ignore)
2192 (vc-print-log-internal
2193 log-view-vc-backend log-view-vc-fileset
2194 working-revision nil (* 2 limit)))
2195 'help-echo "Show the log again, and double the number of log entries shown")
2196 (insert " ")
2197 (insert-text-button "Show unlimited entries"
2198 'action (lambda (&rest _ignore)
2199 (vc-print-log-internal
2200 log-view-vc-backend log-view-vc-fileset
2201 working-revision nil nil))
2202 'help-echo "Show the log again, including all entries")))
2204 (defun vc-print-log-internal (backend files working-revision
2205 &optional is-start-revision limit)
2206 "For specified BACKEND and FILES, show the VC log.
2207 Leave point at WORKING-REVISION, if it is non-nil.
2208 If IS-START-REVISION is non-nil, start the log from WORKING-REVISION
2209 \(not all backends support this); i.e., show only WORKING-REVISION and
2210 earlier revisions. Show up to LIMIT entries (non-nil means unlimited)."
2211 ;; As of 2013/04 the only thing that passes IS-START-REVISION non-nil
2212 ;; is vc-annotate-show-log-revision-at-line, which sets LIMIT = 1.
2214 ;; Don't switch to the output buffer before running the command,
2215 ;; so that any buffer-local settings in the vc-controlled
2216 ;; buffer can be accessed by the command.
2217 (let ((dir-present nil)
2218 (vc-short-log nil)
2219 (buffer-name "*vc-change-log*")
2220 type)
2221 (dolist (file files)
2222 (when (file-directory-p file)
2223 (setq dir-present t)))
2224 (setq vc-short-log
2225 (not (null (if dir-present
2226 (memq 'directory vc-log-short-style)
2227 (memq 'file vc-log-short-style)))))
2228 (setq type (if vc-short-log 'short 'long))
2229 (let ((shortlog vc-short-log))
2230 (vc-log-internal-common
2231 backend buffer-name files type
2232 (lambda (bk buf _type-arg files-arg)
2233 (vc-call-backend bk 'print-log files-arg buf shortlog
2234 (when is-start-revision working-revision) limit))
2235 (lambda (_bk _files-arg ret)
2236 (vc-print-log-setup-buttons working-revision
2237 is-start-revision limit ret))
2238 (lambda (bk)
2239 (vc-call-backend bk 'show-log-entry working-revision))
2240 (lambda (_ignore-auto _noconfirm)
2241 (vc-print-log-internal backend files working-revision
2242 is-start-revision limit))))))
2244 (defvar vc-log-view-type nil
2245 "Set this to differentiate the different types of logs.")
2246 (put 'vc-log-view-type 'permanent-local t)
2247 (defvar vc-sentinel-movepoint)
2249 (defun vc-log-internal-common (backend
2250 buffer-name
2251 files
2252 type
2253 backend-func
2254 setup-buttons-func
2255 goto-location-func
2256 rev-buff-func)
2257 (let (retval)
2258 (with-current-buffer (get-buffer-create buffer-name)
2259 (set (make-local-variable 'vc-log-view-type) type))
2260 (setq retval (funcall backend-func backend buffer-name type files))
2261 (pop-to-buffer buffer-name)
2262 (let ((inhibit-read-only t))
2263 ;; log-view-mode used to be called with inhibit-read-only bound
2264 ;; to t, so let's keep doing it, just in case.
2265 (vc-call-backend backend 'log-view-mode)
2266 (set (make-local-variable 'log-view-vc-backend) backend)
2267 (set (make-local-variable 'log-view-vc-fileset) files)
2268 (set (make-local-variable 'revert-buffer-function)
2269 rev-buff-func))
2270 (vc-run-delayed
2271 (let ((inhibit-read-only t))
2272 (funcall setup-buttons-func backend files retval)
2273 (shrink-window-if-larger-than-buffer)
2274 (funcall goto-location-func backend)
2275 (setq vc-sentinel-movepoint (point))
2276 (set-buffer-modified-p nil)))))
2278 (defun vc-incoming-outgoing-internal (backend remote-location buffer-name type)
2279 (vc-log-internal-common
2280 backend buffer-name nil type
2281 (lambda (bk buf type-arg _files)
2282 (vc-call-backend bk type-arg buf remote-location))
2283 (lambda (_bk _files-arg _ret) nil)
2284 (lambda (_bk) (goto-char (point-min)))
2285 (lambda (_ignore-auto _noconfirm)
2286 (vc-incoming-outgoing-internal backend remote-location buffer-name type))))
2288 ;;;###autoload
2289 (defun vc-print-log (&optional working-revision limit)
2290 "List the change log of the current fileset in a window.
2291 If WORKING-REVISION is non-nil, leave point at that revision.
2292 If LIMIT is non-nil, it should be a number specifying the maximum
2293 number of revisions to show; the default is `vc-log-show-limit'.
2295 When called interactively with a prefix argument, prompt for
2296 WORKING-REVISION and LIMIT."
2297 (interactive
2298 (cond
2299 (current-prefix-arg
2300 (let ((rev (read-from-minibuffer "Leave point at revision (default: last revision): " nil
2301 nil nil nil))
2302 (lim (string-to-number
2303 (read-from-minibuffer
2304 "Limit display (unlimited: 0): "
2305 (format "%s" vc-log-show-limit)
2306 nil nil nil))))
2307 (when (string= rev "") (setq rev nil))
2308 (when (<= lim 0) (setq lim nil))
2309 (list rev lim)))
2311 (list nil (when (> vc-log-show-limit 0) vc-log-show-limit)))))
2312 (let* ((vc-fileset (vc-deduce-fileset t)) ;FIXME: Why t? --Stef
2313 (backend (car vc-fileset))
2314 (files (cadr vc-fileset))
2315 ;; (working-revision (or working-revision (vc-working-revision (car files))))
2317 (vc-print-log-internal backend files working-revision nil limit)))
2319 ;;;###autoload
2320 (defun vc-print-root-log (&optional limit)
2321 "List the change log for the current VC controlled tree in a window.
2322 If LIMIT is non-nil, it should be a number specifying the maximum
2323 number of revisions to show; the default is `vc-log-show-limit'.
2324 When called interactively with a prefix argument, prompt for LIMIT."
2325 (interactive
2326 (cond
2327 (current-prefix-arg
2328 (let ((lim (string-to-number
2329 (read-from-minibuffer
2330 "Limit display (unlimited: 0): "
2331 (format "%s" vc-log-show-limit)
2332 nil nil nil))))
2333 (when (<= lim 0) (setq lim nil))
2334 (list lim)))
2336 (list (when (> vc-log-show-limit 0) vc-log-show-limit)))))
2337 (let ((backend (vc-deduce-backend))
2338 (default-directory default-directory)
2339 rootdir working-revision)
2340 (if backend
2341 (setq rootdir (vc-call-backend backend 'root default-directory))
2342 (setq rootdir (read-directory-name "Directory for VC root-log: "))
2343 (setq backend (vc-responsible-backend rootdir))
2344 (unless backend
2345 (error "Directory is not version controlled")))
2346 (setq working-revision (vc-working-revision rootdir)
2347 default-directory rootdir)
2348 (vc-print-log-internal backend (list rootdir) working-revision nil limit)))
2350 ;;;###autoload
2351 (defun vc-log-incoming (&optional remote-location)
2352 "Show a log of changes that will be received with a pull operation from REMOTE-LOCATION.
2353 When called interactively with a prefix argument, prompt for REMOTE-LOCATION."
2354 (interactive
2355 (when current-prefix-arg
2356 (list (read-string "Remote location (empty for default): "))))
2357 (let ((backend (vc-deduce-backend)))
2358 (unless backend
2359 (error "Buffer is not version controlled"))
2360 (vc-incoming-outgoing-internal backend remote-location "*vc-incoming*"
2361 'log-incoming)))
2363 ;;;###autoload
2364 (defun vc-log-outgoing (&optional remote-location)
2365 "Show a log of changes that will be sent with a push operation to REMOTE-LOCATION.
2366 When called interactively with a prefix argument, prompt for REMOTE-LOCATION."
2367 (interactive
2368 (when current-prefix-arg
2369 (list (read-string "Remote location (empty for default): "))))
2370 (let ((backend (vc-deduce-backend)))
2371 (unless backend
2372 (error "Buffer is not version controlled"))
2373 (vc-incoming-outgoing-internal backend remote-location "*vc-outgoing*"
2374 'log-outgoing)))
2376 ;;;###autoload
2377 (defun vc-revert ()
2378 "Revert working copies of the selected fileset to their repository contents.
2379 This asks for confirmation if the buffer contents are not identical
2380 to the working revision (except for keyword expansion)."
2381 (interactive)
2382 (let* ((vc-fileset (vc-deduce-fileset))
2383 (files (cadr vc-fileset))
2384 (queried nil)
2385 diff-buffer)
2386 ;; If any of the files is visited by the current buffer, make sure
2387 ;; buffer is saved. If the user says `no', abort since we cannot
2388 ;; show the changes and ask for confirmation to discard them.
2389 (when (or (not files) (memq (buffer-file-name) files))
2390 (vc-buffer-sync nil))
2391 (dolist (file files)
2392 (let ((buf (get-file-buffer file)))
2393 (when (and buf (buffer-modified-p buf))
2394 (error "Please kill or save all modified buffers before reverting")))
2395 (when (vc-up-to-date-p file)
2396 (if (yes-or-no-p (format "%s seems up-to-date. Revert anyway? " file))
2397 (setq queried t)
2398 (error "Revert canceled"))))
2399 (unwind-protect
2400 (when (if vc-revert-show-diff
2401 (progn
2402 (setq diff-buffer (generate-new-buffer-name "*vc-diff*"))
2403 (vc-diff-internal vc-allow-async-revert vc-fileset
2404 nil nil nil diff-buffer))
2405 ;; Avoid querying the user again.
2406 (null queried))
2407 (unless (yes-or-no-p
2408 (format "Discard changes in %s? "
2409 (let ((str (vc-delistify files))
2410 (nfiles (length files)))
2411 (if (< (length str) 50)
2413 (format "%d file%s" nfiles
2414 (if (= nfiles 1) "" "s"))))))
2415 (error "Revert canceled")))
2416 (when diff-buffer
2417 (quit-windows-on diff-buffer)))
2418 (dolist (file files)
2419 (message "Reverting %s..." (vc-delistify files))
2420 (vc-revert-file file)
2421 (message "Reverting %s...done" (vc-delistify files)))))
2423 ;;;###autoload
2424 (defun vc-rollback ()
2425 "Roll back (remove) the most recent changeset committed to the repository.
2426 This may be either a file-level or a repository-level operation,
2427 depending on the underlying version-control system."
2428 (interactive)
2429 (let* ((vc-fileset (vc-deduce-fileset))
2430 (backend (car vc-fileset))
2431 (files (cadr vc-fileset))
2432 (granularity (vc-call-backend backend 'revision-granularity)))
2433 (unless (vc-find-backend-function backend 'rollback)
2434 (error "Rollback is not supported in %s" backend))
2435 (when (and (not (eq granularity 'repository)) (/= (length files) 1))
2436 (error "Rollback requires a singleton fileset or repository versioning"))
2437 ;; FIXME: latest-on-branch-p should take the fileset.
2438 (when (not (vc-call-backend backend 'latest-on-branch-p (car files)))
2439 (error "Rollback is only possible at the tip revision"))
2440 ;; If any of the files is visited by the current buffer, make
2441 ;; sure buffer is saved. If the user says `no', abort since
2442 ;; we cannot show the changes and ask for confirmation to
2443 ;; discard them.
2444 (when (or (not files) (memq (buffer-file-name) files))
2445 (vc-buffer-sync nil))
2446 (dolist (file files)
2447 (when (buffer-modified-p (get-file-buffer file))
2448 (error "Please kill or save all modified buffers before rollback"))
2449 (when (not (vc-up-to-date-p file))
2450 (error "Please revert all modified workfiles before rollback")))
2451 ;; Accumulate changes associated with the fileset
2452 (vc-setup-buffer "*vc-diff*")
2453 (not-modified)
2454 (message "Finding changes...")
2455 (let* ((tip (vc-working-revision (car files)))
2456 ;; FIXME: `previous-revision' should take the fileset.
2457 (previous (vc-call-backend backend 'previous-revision
2458 (car files) tip)))
2459 (vc-diff-internal nil vc-fileset previous tip))
2460 ;; Display changes
2461 (unless (yes-or-no-p "Discard these revisions? ")
2462 (error "Rollback canceled"))
2463 (quit-windows-on "*vc-diff*")
2464 ;; Do the actual reversions
2465 (message "Rolling back %s..." (vc-delistify files))
2466 (with-vc-properties
2467 files
2468 (vc-call-backend backend 'rollback files)
2469 `((vc-state . ,'up-to-date)
2470 (vc-checkout-time . , (nth 5 (file-attributes file)))
2471 (vc-working-revision . nil)))
2472 (dolist (f files) (vc-resynch-buffer f t t))
2473 (message "Rolling back %s...done" (vc-delistify files))))
2475 ;;;###autoload
2476 (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1")
2478 ;;;###autoload
2479 (defun vc-pull (&optional arg)
2480 "Update the current fileset or branch.
2481 You must be visiting a version controlled file, or in a `vc-dir' buffer.
2482 On a distributed version control system, this runs a \"pull\"
2483 operation to update the current branch, prompting for an argument
2484 list if required. Optional prefix ARG forces a prompt.
2486 On a non-distributed version control system, update the current
2487 fileset to the tip revisions. For each unchanged and unlocked
2488 file, this simply replaces the work file with the latest revision
2489 on its branch. If the file contains changes, any changes in the
2490 tip revision are merged into the working file."
2491 (interactive "P")
2492 (let* ((vc-fileset (vc-deduce-fileset t))
2493 (backend (car vc-fileset))
2494 (files (cadr vc-fileset)))
2495 (cond
2496 ;; If a pull operation is defined, use it.
2497 ((vc-find-backend-function backend 'pull)
2498 (vc-call-backend backend 'pull arg))
2499 ;; If VCS has `merge-news' functionality (CVS and SVN), use it.
2500 ((vc-find-backend-function backend 'merge-news)
2501 (save-some-buffers ; save buffers visiting files
2502 nil (lambda ()
2503 (and (buffer-modified-p)
2504 (let ((file (buffer-file-name)))
2505 (and file (member file files))))))
2506 (dolist (file files)
2507 (if (vc-up-to-date-p file)
2508 (vc-checkout file nil t)
2509 (vc-maybe-resolve-conflicts
2510 file (vc-call-backend backend 'merge-news file)))))
2511 ;; For a locking VCS, check out each file.
2512 ((eq (vc-checkout-model backend files) 'locking)
2513 (dolist (file files)
2514 (if (vc-up-to-date-p file)
2515 (vc-checkout file nil t))))
2517 (error "VC update is unsupported for `%s'" backend)))))
2519 ;;;###autoload
2520 (defalias 'vc-update 'vc-pull)
2522 (defun vc-version-backup-file (file &optional rev)
2523 "Return name of backup file for revision REV of FILE.
2524 If version backups should be used for FILE, and there exists
2525 such a backup for REV or the working revision of file, return
2526 its name; otherwise return nil."
2527 (when (vc-call make-version-backups-p file)
2528 (let ((backup-file (vc-version-backup-file-name file rev)))
2529 (if (file-exists-p backup-file)
2530 backup-file
2531 ;; there is no automatic backup, but maybe the user made one manually
2532 (setq backup-file (vc-version-backup-file-name file rev 'manual))
2533 (when (file-exists-p backup-file)
2534 backup-file)))))
2536 (defun vc-revert-file (file)
2537 "Revert FILE back to the repository working revision it was based on."
2538 (with-vc-properties
2539 (list file)
2540 (let ((backup-file (vc-version-backup-file file)))
2541 (when backup-file
2542 (copy-file backup-file file 'ok-if-already-exists)
2543 (vc-delete-automatic-version-backups file))
2544 (vc-call revert file backup-file))
2545 `((vc-state . up-to-date)
2546 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
2547 (vc-resynch-buffer file t t))
2549 ;;;###autoload
2550 (defun vc-switch-backend (file backend)
2551 "Make BACKEND the current version control system for FILE.
2552 FILE must already be registered in BACKEND. The change is not
2553 permanent, only for the current session. This function only changes
2554 VC's perspective on FILE, it does not register or unregister it.
2555 By default, this command cycles through the registered backends.
2556 To get a prompt, use a prefix argument."
2557 (interactive
2558 (list
2559 (or buffer-file-name
2560 (error "There is no version-controlled file in this buffer"))
2561 (let ((crt-bk (vc-backend buffer-file-name))
2562 (backends nil))
2563 (unless crt-bk
2564 (error "File %s is not under version control" buffer-file-name))
2565 ;; Find the registered backends.
2566 (dolist (crt vc-handled-backends)
2567 (when (and (vc-call-backend crt 'registered buffer-file-name)
2568 (not (eq crt-bk crt)))
2569 (push crt backends)))
2570 ;; Find the next backend.
2571 (let ((def (car backends))
2572 (others backends))
2573 (cond
2574 ((null others) (error "No other backend to switch to"))
2575 (current-prefix-arg
2576 (intern
2577 (upcase
2578 (completing-read
2579 (format "Switch to backend [%s]: " def)
2580 (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends)
2581 nil t nil nil (downcase (symbol-name def))))))
2582 (t def))))))
2583 (unless (eq backend (vc-backend file))
2584 (vc-file-clearprops file)
2585 (vc-file-setprop file 'vc-backend backend)
2586 ;; Force recomputation of the state
2587 (unless (vc-call-backend backend 'registered file)
2588 (vc-file-clearprops file)
2589 (error "%s is not registered in %s" file backend))
2590 (vc-mode-line file)))
2592 ;;;###autoload
2593 (defun vc-transfer-file (file new-backend)
2594 "Transfer FILE to another version control system NEW-BACKEND.
2595 If NEW-BACKEND has a higher precedence than FILE's current backend
2596 \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
2597 NEW-BACKEND, using the revision number from the current backend as the
2598 base level. If NEW-BACKEND has a lower precedence than the current
2599 backend, then commit all changes that were made under the current
2600 backend to NEW-BACKEND, and unregister FILE from the current backend.
2601 \(If FILE is not yet registered under NEW-BACKEND, register it.)"
2602 (let* ((old-backend (vc-backend file))
2603 (edited (memq (vc-state file) '(edited needs-merge)))
2604 (registered (vc-call-backend new-backend 'registered file))
2605 (move
2606 (and registered ; Never move if not registered in new-backend yet.
2607 ;; move if new-backend comes later in vc-handled-backends
2608 (or (memq new-backend (memq old-backend vc-handled-backends))
2609 (y-or-n-p "Final transfer? "))))
2610 (comment nil))
2611 (when (eq old-backend new-backend)
2612 (error "%s is the current backend of %s" new-backend file))
2613 (if registered
2614 (set-file-modes file (logior (file-modes file) 128))
2615 ;; `registered' might have switched under us.
2616 (vc-switch-backend file old-backend)
2617 (let* ((rev (vc-working-revision file))
2618 (modified-file (and edited (make-temp-file file)))
2619 (unmodified-file (and modified-file (vc-version-backup-file file))))
2620 ;; Go back to the base unmodified file.
2621 (unwind-protect
2622 (progn
2623 (when modified-file
2624 (copy-file file modified-file 'ok-if-already-exists)
2625 ;; If we have a local copy of the unmodified file, handle that
2626 ;; here and not in vc-revert-file because we don't want to
2627 ;; delete that copy -- it is still useful for OLD-BACKEND.
2628 (if unmodified-file
2629 (copy-file unmodified-file file
2630 'ok-if-already-exists 'keep-date)
2631 (when (y-or-n-p "Get base revision from repository? ")
2632 (vc-revert-file file))))
2633 (vc-call-backend new-backend 'receive-file file rev))
2634 (when modified-file
2635 (vc-switch-backend file new-backend)
2636 (unless (eq (vc-checkout-model new-backend (list file)) 'implicit)
2637 (vc-checkout file t nil))
2638 (rename-file modified-file file 'ok-if-already-exists)
2639 (vc-file-setprop file 'vc-checkout-time nil)))))
2640 (when move
2641 (vc-switch-backend file old-backend)
2642 (setq comment (vc-call-backend old-backend 'comment-history file))
2643 (vc-call-backend old-backend 'unregister file))
2644 (vc-switch-backend file new-backend)
2645 (when (or move edited)
2646 (vc-file-setprop file 'vc-state 'edited)
2647 (vc-mode-line file new-backend)
2648 (vc-checkin file new-backend nil comment (stringp comment)))))
2650 (defun vc-rename-master (oldmaster newfile templates)
2651 "Rename OLDMASTER to be the master file for NEWFILE based on TEMPLATES."
2652 (let* ((dir (file-name-directory (expand-file-name oldmaster)))
2653 (newdir (or (file-name-directory newfile) ""))
2654 (newbase (file-name-nondirectory newfile))
2655 (masters
2656 ;; List of potential master files for `newfile'
2657 (mapcar
2658 (lambda (s) (vc-possible-master s newdir newbase))
2659 templates)))
2660 (when (or (file-symlink-p oldmaster)
2661 (file-symlink-p (file-name-directory oldmaster)))
2662 (error "This is unsafe in the presence of symbolic links"))
2663 (rename-file
2664 oldmaster
2665 (catch 'found
2666 ;; If possible, keep the master file in the same directory.
2667 (dolist (f masters)
2668 (when (and f (string= (file-name-directory (expand-file-name f)) dir))
2669 (throw 'found f)))
2670 ;; If not, just use the first possible place.
2671 (dolist (f masters)
2672 (and f (or (not (setq dir (file-name-directory f)))
2673 (file-directory-p dir))
2674 (throw 'found f)))
2675 (error "New file lacks a version control directory")))))
2677 ;;;###autoload
2678 (defun vc-delete-file (file)
2679 "Delete file and mark it as such in the version control system.
2680 If called interactively, read FILE, defaulting to the current
2681 buffer's file name if it's under version control."
2682 (interactive (list (read-file-name "VC delete file: " nil
2683 (when (vc-backend buffer-file-name)
2684 buffer-file-name) t)))
2685 (setq file (expand-file-name file))
2686 (let ((buf (get-file-buffer file))
2687 (backend (vc-backend file)))
2688 (unless backend
2689 (error "File %s is not under version control"
2690 (file-name-nondirectory file)))
2691 (unless (vc-find-backend-function backend 'delete-file)
2692 (error "Deleting files under %s is not supported in VC" backend))
2693 (when (and buf (buffer-modified-p buf))
2694 (error "Please save or undo your changes before deleting %s" file))
2695 (let ((state (vc-state file)))
2696 (when (eq state 'edited)
2697 (error "Please commit or undo your changes before deleting %s" file))
2698 (when (eq state 'conflict)
2699 (error "Please resolve the conflicts before deleting %s" file)))
2700 (unless (y-or-n-p (format "Really want to delete %s? "
2701 (file-name-nondirectory file)))
2702 (error "Abort!"))
2703 (unless (or (file-directory-p file) (null make-backup-files)
2704 (not (file-exists-p file)))
2705 (with-current-buffer (or buf (find-file-noselect file))
2706 (let ((backup-inhibited nil))
2707 (backup-buffer))))
2708 ;; Bind `default-directory' so that the command that the backend
2709 ;; runs to remove the file is invoked in the correct context.
2710 (let ((default-directory (file-name-directory file)))
2711 (vc-call-backend backend 'delete-file file))
2712 ;; If the backend hasn't deleted the file itself, let's do it for him.
2713 (when (file-exists-p file) (delete-file file))
2714 ;; Forget what VC knew about the file.
2715 (vc-file-clearprops file)
2716 ;; Make sure the buffer is deleted and the *vc-dir* buffers are
2717 ;; updated after this.
2718 (vc-resynch-buffer file nil t)))
2720 ;;;###autoload
2721 (defun vc-rename-file (old new)
2722 "Rename file OLD to NEW in both work area and repository.
2723 If called interactively, read OLD and NEW, defaulting OLD to the
2724 current buffer's file name if it's under version control."
2725 (interactive (list (read-file-name "VC rename file: " nil
2726 (when (vc-backend buffer-file-name)
2727 buffer-file-name) t)
2728 (read-file-name "Rename to: ")))
2729 ;; in CL I would have said (setq new (merge-pathnames new old))
2730 (let ((old-base (file-name-nondirectory old)))
2731 (when (and (not (string= "" old-base))
2732 (string= "" (file-name-nondirectory new)))
2733 (setq new (concat new old-base))))
2734 (let ((oldbuf (get-file-buffer old)))
2735 (when (and oldbuf (buffer-modified-p oldbuf))
2736 (error "Please save files before moving them"))
2737 (when (get-file-buffer new)
2738 (error "Already editing new file name"))
2739 (when (file-exists-p new)
2740 (error "New file already exists"))
2741 (let ((state (vc-state old)))
2742 (unless (memq state '(up-to-date edited))
2743 (error "Please %s files before moving them"
2744 (if (stringp state) "check in" "update"))))
2745 (vc-call rename-file old new)
2746 (vc-file-clearprops old)
2747 ;; Move the actual file (unless the backend did it already)
2748 (when (file-exists-p old) (rename-file old new))
2749 ;; ?? Renaming a file might change its contents due to keyword expansion.
2750 ;; We should really check out a new copy if the old copy was precisely equal
2751 ;; to some checked-in revision. However, testing for this is tricky....
2752 (when oldbuf
2753 (with-current-buffer oldbuf
2754 (let ((buffer-read-only buffer-read-only))
2755 (set-visited-file-name new))
2756 (vc-mode-line new (vc-backend new))
2757 (set-buffer-modified-p nil)))))
2759 ;;;###autoload
2760 (defun vc-update-change-log (&rest args)
2761 "Find change log file and add entries from recent version control logs.
2762 Normally, find log entries for all registered files in the default
2763 directory.
2765 With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
2767 With any numeric prefix arg, find log entries for all currently visited
2768 files that are under version control. This puts all the entries in the
2769 log for the default directory, which may not be appropriate.
2771 From a program, any ARGS are assumed to be filenames for which
2772 log entries should be gathered."
2773 (interactive
2774 (cond ((consp current-prefix-arg) ;C-u
2775 (list buffer-file-name))
2776 (current-prefix-arg ;Numeric argument.
2777 (let ((files nil))
2778 (dolist (buffer (buffer-list))
2779 (let ((file (buffer-file-name buffer)))
2780 (and file (vc-backend file)
2781 (setq files (cons file files)))))
2782 files))
2784 ;; Don't supply any filenames to backend; this means
2785 ;; it should find all relevant files relative to
2786 ;; the default-directory.
2787 nil)))
2788 (vc-call-backend (vc-responsible-backend default-directory)
2789 'update-changelog args))
2791 ;; functions that operate on RCS revision numbers. This code should
2792 ;; also be moved into the backends. It stays for now, however, since
2793 ;; it is used in code below.
2794 (defun vc-branch-p (rev)
2795 "Return t if REV is a branch revision."
2796 (not (eq nil (string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev))))
2798 ;;;###autoload
2799 (defun vc-branch-part (rev)
2800 "Return the branch part of a revision number REV."
2801 (let ((index (string-match "\\.[0-9]+\\'" rev)))
2802 (when index
2803 (substring rev 0 index))))
2805 (defun vc-default-responsible-p (_backend _file)
2806 "Indicate whether BACKEND is responsible for FILE.
2807 The default is to return nil always."
2808 nil)
2810 (defun vc-default-could-register (_backend _file)
2811 "Return non-nil if BACKEND could be used to register FILE.
2812 The default implementation returns t for all files."
2815 (defun vc-default-latest-on-branch-p (_backend _file)
2816 "Return non-nil if FILE is the latest on its branch.
2817 This default implementation always returns non-nil, which means that
2818 editing non-current revisions is not supported by default."
2821 (defun vc-default-init-revision (_backend) vc-default-init-revision)
2823 (defun vc-default-find-revision (backend file rev buffer)
2824 "Provide the new `find-revision' op based on the old `checkout' op.
2825 This is only for compatibility with old backends. They should be updated
2826 to provide the `find-revision' operation instead."
2827 (let ((tmpfile (make-temp-file (expand-file-name file))))
2828 (unwind-protect
2829 (progn
2830 (vc-call-backend backend 'checkout file nil rev tmpfile)
2831 (with-current-buffer buffer
2832 (insert-file-contents-literally tmpfile)))
2833 (delete-file tmpfile))))
2835 (defun vc-default-rename-file (_backend old new)
2836 (condition-case nil
2837 (add-name-to-file old new)
2838 (error (rename-file old new)))
2839 (vc-delete-file old)
2840 (with-current-buffer (find-file-noselect new)
2841 (vc-register)))
2843 (defalias 'vc-default-check-headers 'ignore)
2845 (declare-function log-edit-mode "log-edit" ())
2847 (defun vc-default-log-edit-mode (_backend) (log-edit-mode))
2849 (defun vc-default-log-view-mode (_backend) (log-view-mode))
2851 (defun vc-default-show-log-entry (_backend rev)
2852 (with-no-warnings
2853 (log-view-goto-rev rev)))
2855 (defun vc-default-comment-history (backend file)
2856 "Return a string with all log entries stored in BACKEND for FILE."
2857 (when (vc-find-backend-function backend 'print-log)
2858 (with-current-buffer "*vc*"
2859 (vc-call-backend backend 'print-log (list file))
2860 (buffer-string))))
2862 (defun vc-default-receive-file (backend file rev)
2863 "Let BACKEND receive FILE from another version control system."
2864 (vc-call-backend backend 'register (list file) rev ""))
2866 (defun vc-default-retrieve-tag (backend dir name update)
2867 (if (string= name "")
2868 (progn
2869 (vc-file-tree-walk
2871 (lambda (f) (and
2872 (vc-up-to-date-p f)
2873 (vc-error-occurred
2874 (vc-call-backend backend 'checkout f nil "")
2875 (when update (vc-resynch-buffer f t t)))))))
2876 (let ((result (vc-tag-precondition dir)))
2877 (if (stringp result)
2878 (error "File %s is locked" result)
2879 (setq update (and (eq result 'visited) update))
2880 (vc-file-tree-walk
2882 (lambda (f) (vc-error-occurred
2883 (vc-call-backend backend 'checkout f nil name)
2884 (when update (vc-resynch-buffer f t t)))))))))
2886 (defun vc-default-revert (backend file contents-done)
2887 (unless contents-done
2888 (let ((rev (vc-working-revision file))
2889 (file-buffer (or (get-file-buffer file) (current-buffer))))
2890 (message "Checking out %s..." file)
2891 (let ((failed t)
2892 (backup-name (car (find-backup-file-name file))))
2893 (when backup-name
2894 (copy-file file backup-name 'ok-if-already-exists 'keep-date)
2895 (unless (file-writable-p file)
2896 (set-file-modes file (logior (file-modes file) 128))))
2897 (unwind-protect
2898 (let ((coding-system-for-read 'no-conversion)
2899 (coding-system-for-write 'no-conversion))
2900 (with-temp-file file
2901 (let ((outbuf (current-buffer)))
2902 ;; Change buffer to get local value of vc-checkout-switches.
2903 (with-current-buffer file-buffer
2904 (let ((default-directory (file-name-directory file)))
2905 (vc-call-backend backend 'find-revision
2906 file rev outbuf)))))
2907 (setq failed nil))
2908 (when backup-name
2909 (if failed
2910 (rename-file backup-name file 'ok-if-already-exists)
2911 (and (not vc-make-backup-files) (delete-file backup-name))))))
2912 (message "Checking out %s...done" file))))
2914 (defalias 'vc-default-revision-completion-table 'ignore)
2915 (defalias 'vc-default-mark-resolved 'ignore)
2917 (defun vc-default-dir-status-files (_backend _dir files default-state update-function)
2918 (funcall update-function
2919 (mapcar (lambda (file) (list file default-state)) files)))
2921 (defun vc-check-headers ()
2922 "Check if the current file has any headers in it."
2923 (interactive)
2924 (vc-call-backend (vc-backend buffer-file-name) 'check-headers))
2928 ;; These things should probably be generally available
2929 (define-obsolete-function-alias 'vc-string-prefix-p 'string-prefix-p "24.3")
2931 (defun vc-file-tree-walk (dirname func &rest args)
2932 "Walk recursively through DIRNAME.
2933 Invoke FUNC f ARGS on each VC-managed file f underneath it."
2934 (vc-file-tree-walk-internal (expand-file-name dirname) func args)
2935 (message "Traversing directory %s...done" dirname))
2937 (defun vc-file-tree-walk-internal (file func args)
2938 (if (not (file-directory-p file))
2939 (when (vc-backend file) (apply func file args))
2940 (message "Traversing directory %s..." (abbreviate-file-name file))
2941 (let ((dir (file-name-as-directory file)))
2942 (mapcar
2943 (lambda (f) (or
2944 (string-equal f ".")
2945 (string-equal f "..")
2946 (member f vc-directory-exclusion-list)
2947 (let ((dirf (expand-file-name f dir)))
2949 (file-symlink-p dirf) ;; Avoid possible loops.
2950 (vc-file-tree-walk-internal dirf func args)))))
2951 (directory-files dir)))))
2953 (provide 'vc)
2955 ;;; vc.el ends here