Try to handle buffer/file modifications which conflict with VCS locking.
[bpt/emacs.git] / lisp / vc / vc-hooks.el
CommitLineData
aae56ea7 1;;; vc-hooks.el --- resident support for version-control
594722a8 2
ab422c4d 3;; Copyright (C) 1992-1996, 1998-2013 Free Software Foundation, Inc.
594722a8 4
0e0d9831
GM
5;; Author: FSF (see vc.el for full credits)
6;; Maintainer: Andre Spiegel <spiegel@gnu.org>
bd78fa1d 7;; Package: vc
594722a8
ER
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
594722a8 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
594722a8
ER
15
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
7d56ad0d 19;; GNU General Public License for more details.
594722a8
ER
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
594722a8
ER
23
24;;; Commentary:
25
0e0d9831
GM
26;; This is the always-loaded portion of VC. It takes care of
27;; VC-related activities that are done when you visit a file, so that
28;; vc.el itself is loaded only when you use a VC command. See the
29;; commentary of vc.el.
594722a8
ER
30
31;;; Code:
32
a464a6c7 33(eval-when-compile (require 'cl-lib))
099bd78a 34
e1c0c2d1
KH
35;; Customization Variables (the rest is in vc.el)
36
456e749f
SM
37(defcustom vc-ignore-dir-regexp
38 ;; Stop SMB, automounter, AFS, and DFS host lookups.
8cd56959 39 locate-dominating-stop-dir-regexp
43621386 40 "Regexp matching directory names that are not under VC's control.
ce9f8ffb
SM
41The default regexp prevents fruitless and time-consuming attempts
42to determine the VC status in directories in which filenames are
43621386
SM
43interpreted as hostnames."
44 :type 'regexp
45 :group 'vc)
ce9f8ffb 46
db86064f 47(defcustom vc-handled-backends '(RCS CVS SVN SCCS Bzr Git Hg Mtn Arch)
b1dc6d44
SM
48 ;; RCS, CVS, SVN and SCCS come first because they are per-dir
49 ;; rather than per-tree. RCS comes first because of the multibackend
50 ;; support intended to use RCS for local commits (with a remote CVS server).
e5162bc1 51 "List of version control backends for which VC will be used.
0e0d9831
GM
52Entries in this list will be tried in order to determine whether a
53file is under that sort of version control.
54Removing an entry from the list prevents VC from being activated
55when visiting a file managed by that backend.
56An empty list disables VC altogether."
57 :type '(repeat symbol)
dbd3d787 58 :version "23.1"
50bec091 59 :group 'vc)
31888047 60
1f0bee0a 61;; Note: we don't actually have a darcs back end yet.
da6062e6 62;; Also, Meta-CVS (corresponding to MCVS) is unsupported.
0b7f397c 63(defcustom vc-directory-exclusion-list (purecopy '("SCCS" "RCS" "CVS" "MCVS"
527b313d 64 ".svn" ".git" ".hg" ".bzr"
0b7f397c 65 "_MTN" "_darcs" "{arch}"))
9c4b89d5
ER
66 "List of directory names to be ignored when walking directory trees."
67 :type '(repeat string)
68 :group 'vc)
69
50bec091 70(defcustom vc-make-backup-files nil
e5162bc1 71 "If non-nil, backups of registered files are made as with other files.
50bec091
KH
72If nil (the default), files covered by version control don't get backups."
73 :type 'boolean
8f383484
DL
74 :group 'vc
75 :group 'backup)
594722a8 76
50bec091 77(defcustom vc-follow-symlinks 'ask
e5162bc1 78 "What to do if visiting a symbolic link to a file under version control.
0e0d9831
GM
79Editing such a file through the link bypasses the version control system,
80which is dangerous and probably not what you want.
81
82If this variable is t, VC follows the link and visits the real file,
b8063212
AS
83telling you about it in the echo area. If it is `ask', VC asks for
84confirmation whether it should follow the link. If nil, the link is
50bec091 85visited and a warning displayed."
0e0d9831
GM
86 :type '(choice (const :tag "Ask for confirmation" ask)
87 (const :tag "Visit link and warn" nil)
88 (const :tag "Follow link" t))
50bec091 89 :group 'vc)
b8063212 90
50bec091 91(defcustom vc-display-status t
37269466 92 "If non-nil, display revision number and lock status in mode line.
50bec091
KH
93Otherwise, not displayed."
94 :type 'boolean
95 :group 'vc)
96
198d5c00 97
50bec091 98(defcustom vc-consult-headers t
e5162bc1 99 "If non-nil, identify work files by searching for version headers."
50bec091
KH
100 :type 'boolean
101 :group 'vc)
e1c0c2d1 102
50bec091 103(defcustom vc-keep-workfiles t
d031f2c7
CY
104 "Whether to keep work files on disk after commits, on a locking VCS.
105This variable has no effect on modern merging-based version
106control systems."
50bec091
KH
107 :type 'boolean
108 :group 'vc)
e1c0c2d1 109
999e745e
GM
110;; If you fix bug#11490, probably you can set this back to nil.
111(defcustom vc-mistrust-permissions t
e5162bc1 112 "If non-nil, don't assume permissions/ownership track version-control status.
0e0d9831 113If nil, do rely on the permissions.
50bec091 114See also variable `vc-consult-headers'."
999e745e 115 :version "24.3" ; nil->t, bug#11490
50bec091
KH
116 :type 'boolean
117 :group 'vc)
e66eac08
AS
118
119(defun vc-mistrust-permissions (file)
0e0d9831 120 "Internal access function to variable `vc-mistrust-permissions' for FILE."
e66eac08
AS
121 (or (eq vc-mistrust-permissions 't)
122 (and vc-mistrust-permissions
0e0d9831 123 (funcall vc-mistrust-permissions
e66eac08
AS
124 (vc-backend-subdirectory-name file)))))
125
5870cb76 126(defcustom vc-stay-local 'only-file
e5162bc1 127 "Non-nil means use local operations when possible for remote repositories.
113414a9
SM
128This avoids slow queries over the network and instead uses heuristics
129and past information to determine the current status of a file.
130
5870cb76
DN
131If value is the symbol `only-file' `vc-dir' will connect to the
132server, but heuristics will be used to determine the status for
133all other VC operations.
134
113414a9
SM
135The value can also be a regular expression or list of regular
136expressions to match against the host name of a repository; then VC
137only stays local for hosts that match it. Alternatively, the value
138can be a list of regular expressions where the first element is the
139symbol `except'; then VC always stays local except for hosts matched
140by these regular expressions."
5870cb76
DN
141 :type '(choice
142 (const :tag "Always stay local" t)
37e14a62 143 (const :tag "Only for file operations" only-file)
113414a9
SM
144 (const :tag "Don't stay local" nil)
145 (list :format "\nExamine hostname and %v" :tag "Examine hostname ..."
146 (set :format "%v" :inline t (const :format "%t" :tag "don't" except))
147 (regexp :format " stay local,\n%t: %v" :tag "if it matches")
148 (repeat :format "%v%i\n" :inline t (regexp :tag "or"))))
5870cb76 149 :version "23.1"
113414a9
SM
150 :group 'vc)
151
77bf3f54 152(defun vc-stay-local-p (file &optional backend)
113414a9 153 "Return non-nil if VC should stay local when handling FILE.
33e0847d
TTN
154This uses the `repository-hostname' backend operation.
155If FILE is a list of files, return non-nil if any of them
156individually should stay local."
e4d26892 157 (if (listp file)
77bf3f54
DN
158 (delq nil (mapcar (lambda (arg) (vc-stay-local-p arg backend)) file))
159 (setq backend (or backend (vc-backend file)))
160 (let* ((sym (vc-make-backend-sym backend 'stay-local))
95541017 161 (stay-local (if (boundp sym) (symbol-value sym) vc-stay-local)))
e4d26892
ER
162 (if (symbolp stay-local) stay-local
163 (let ((dirname (if (file-directory-p file)
164 (directory-file-name file)
165 (file-name-directory file))))
166 (eq 'yes
167 (or (vc-file-getprop dirname 'vc-stay-local-p)
168 (vc-file-setprop
169 dirname 'vc-stay-local-p
170 (let ((hostname (vc-call-backend
171 backend 'repository-hostname dirname)))
172 (if (not hostname)
173 'no
174 (let ((default t))
175 (if (eq (car-safe stay-local) 'except)
176 (setq default nil stay-local (cdr stay-local)))
177 (when (consp stay-local)
178 (setq stay-local
179 (mapconcat 'identity stay-local "\\|")))
180 (if (if (string-match stay-local hostname)
181 default (not default))
182 'yes 'no))))))))))))
113414a9 183
9bd06e95 184;;; This is handled specially now.
594722a8 185;; Tell Emacs about this new kind of minor mode
9bd06e95 186;; (add-to-list 'minor-mode-alist '(vc-mode vc-mode))
594722a8 187
d270305a 188;;;###autoload
6dc3311d 189(put 'vc-mode 'risky-local-variable t)
7bc2b98b 190(make-variable-buffer-local 'vc-mode)
c43e436c 191(put 'vc-mode 'permanent-local t)
594722a8 192
14fef9de
SM
193(defun vc-mode (&optional arg)
194 ;; Dummy function for C-h m
195 "Version Control minor mode.
196This minor mode is automatically activated whenever you visit a file under
197control of one of the revision control systems in `vc-handled-backends'.
198VC commands are globally reachable under the prefix `\\[vc-prefix-map]':
199\\{vc-prefix-map}")
200
099bd78a 201(defmacro vc-error-occurred (&rest body)
becd6193 202 `(condition-case nil (progn ,@body nil) (error t)))
099bd78a 203
594722a8 204;; We need a notion of per-file properties because the version
f2ee4191 205;; control state of a file is expensive to derive --- we compute
0e0d9831 206;; them when the file is initially found, keep them up to date
f2ee4191
RS
207;; during any subsequent VC operations, and forget them when
208;; the buffer is killed.
594722a8 209
becd6193 210(defvar vc-file-prop-obarray (make-vector 17 0)
594722a8
ER
211 "Obarray for per-file properties.")
212
099bd78a
SM
213(defvar vc-touched-properties nil)
214
594722a8 215(defun vc-file-setprop (file property value)
0e0d9831 216 "Set per-file VC PROPERTY for FILE to VALUE."
099bd78a
SM
217 (if (and vc-touched-properties
218 (not (memq property vc-touched-properties)))
219 (setq vc-touched-properties (append (list property)
220 vc-touched-properties)))
594722a8
ER
221 (put (intern file vc-file-prop-obarray) property value))
222
223(defun vc-file-getprop (file property)
099bd78a 224 "Get per-file VC PROPERTY for FILE."
594722a8
ER
225 (get (intern file vc-file-prop-obarray) property))
226
e1c0c2d1 227(defun vc-file-clearprops (file)
0e0d9831 228 "Clear all VC properties of FILE."
1dc2755a
CY
229 (if (boundp 'vc-parent-buffer)
230 (kill-local-variable 'vc-parent-buffer))
f98c9a23 231 (setplist (intern file vc-file-prop-obarray) nil))
f2ee4191 232
0e0d9831
GM
233\f
234;; We keep properties on each symbol naming a backend as follows:
235;; * `vc-functions': an alist mapping vc-FUNCTION to vc-BACKEND-FUNCTION.
236
237(defun vc-make-backend-sym (backend sym)
238 "Return BACKEND-specific version of VC symbol SYM."
239 (intern (concat "vc-" (downcase (symbol-name backend))
240 "-" (symbol-name sym))))
241
242(defun vc-find-backend-function (backend fun)
243 "Return BACKEND-specific implementation of FUN.
f8b72742 244If there is no such implementation, return the default implementation;
0e0d9831
GM
245if that doesn't exist either, return nil."
246 (let ((f (vc-make-backend-sym backend fun)))
247 (if (fboundp f) f
248 ;; Load vc-BACKEND.el if needed.
249 (require (intern (concat "vc-" (downcase (symbol-name backend)))))
250 (if (fboundp f) f
251 (let ((def (vc-make-backend-sym 'default fun)))
252 (if (fboundp def) (cons def backend) nil))))))
253
254(defun vc-call-backend (backend function-name &rest args)
255 "Call for BACKEND the implementation of FUNCTION-NAME with the given ARGS.
256Calls
257
258 (apply 'vc-BACKEND-FUN ARGS)
259
260if vc-BACKEND-FUN exists (after trying to find it in vc-BACKEND.el)
261and else calls
262
263 (apply 'vc-default-FUN BACKEND ARGS)
264
265It is usually called via the `vc-call' macro."
0bfb74a9
SM
266 (let ((f (assoc function-name (get backend 'vc-functions))))
267 (if f (setq f (cdr f))
0e0d9831 268 (setq f (vc-find-backend-function backend function-name))
0bfb74a9
SM
269 (push (cons function-name f) (get backend 'vc-functions)))
270 (cond
271 ((null f)
272 (error "Sorry, %s is not implemented for %s" function-name backend))
273 ((consp f) (apply (car f) (cdr f) args))
274 (t (apply f args)))))
0e0d9831
GM
275
276(defmacro vc-call (fun file &rest args)
daffc81a
JR
277 "A convenience macro for calling VC backend functions.
278Functions called by this macro must accept FILE as the first argument.
d4e772c4
JB
279ARGS specifies any additional arguments. FUN should be unquoted.
280BEWARE!! FILE is evaluated twice!!"
0e0d9831 281 `(vc-call-backend (vc-backend ,file) ',fun ,file ,@args))
0e0d9831
GM
282\f
283(defsubst vc-parse-buffer (pattern i)
284 "Find PATTERN in the current buffer and return its Ith submatch."
285 (goto-char (point-min))
286 (if (re-search-forward pattern nil t)
287 (match-string i)))
e1c0c2d1 288
02d383eb 289(defun vc-insert-file (file &optional limit blocksize)
0e0d9831
GM
290 "Insert the contents of FILE into the current buffer.
291
292Optional argument LIMIT is a regexp. If present, the file is inserted
293in chunks of size BLOCKSIZE (default 8 kByte), until the first
f8b72742 294occurrence of LIMIT is found. Anything from the start of that occurrence
e30140ce
AS
295to the end of the buffer is then deleted. The function returns
296non-nil if FILE exists and its contents were successfully inserted."
07de4c3d 297 (erase-buffer)
ff40374a
AS
298 (when (file-exists-p file)
299 (if (not limit)
300 (insert-file-contents file)
b5446276 301 (unless blocksize (setq blocksize 8192))
4d2806e2
SM
302 (let ((filepos 0))
303 (while
304 (and (< 0 (cadr (insert-file-contents
a464a6c7 305 file nil filepos (cl-incf filepos blocksize))))
4d2806e2 306 (progn (beginning-of-line)
e30140ce 307 (let ((pos (re-search-forward limit nil 'move)))
b5446276
DN
308 (when pos (delete-region (match-beginning 0)
309 (point-max)))
e30140ce 310 (not pos)))))))
ff40374a
AS
311 (set-buffer-modified-p nil)
312 t))
02d383eb 313
3dd2acc9 314(defun vc-find-root (file witness)
ce9f8ffb
SM
315 "Find the root of a checked out project.
316The function walks up the directory tree from FILE looking for WITNESS.
3dd2acc9 317If WITNESS if not found, return nil, otherwise return the root."
8cd56959
SM
318 (let ((locate-dominating-stop-dir-regexp
319 (or vc-ignore-dir-regexp locate-dominating-stop-dir-regexp)))
320 (locate-dominating-file file witness)))
37e14a62 321
14fef9de
SM
322;; Access functions to file properties
323;; (Properties should be _set_ using vc-file-setprop, but
324;; _retrieved_ only through these functions, which decide
d4e772c4 325;; if the property is already known or not. A property should
14fef9de
SM
326;; only be retrieved by vc-file-getprop if there is no
327;; access function.)
02d383eb 328
14fef9de 329;; properties indicating the backend being used for FILE
e1c0c2d1 330
0e0d9831
GM
331(defun vc-registered (file)
332 "Return non-nil if FILE is registered in a version control system.
333
1f22ad24
AS
334This function performs the check each time it is called. To rely
335on the result of a previous call, use `vc-backend' instead. If the
336file was previously registered under a certain backend, then that
337backend is tried first."
0e0d9831 338 (let (handler)
ce9f8ffb 339 (cond
8cd56959
SM
340 ((and (file-name-directory file)
341 (string-match vc-ignore-dir-regexp (file-name-directory file)))
44cd688b 342 nil)
ce9f8ffb
SM
343 ((and (boundp 'file-name-handler-alist)
344 (setq handler (find-file-name-handler file 'vc-registered)))
345 ;; handler should set vc-backend and return t if registered
346 (funcall handler 'vc-registered file))
347 (t
0e0d9831
GM
348 ;; There is no file name handler.
349 ;; Try vc-BACKEND-registered for each handled BACKEND.
350 (catch 'found
1f22ad24 351 (let ((backend (vc-file-getprop file 'vc-backend)))
a549ce70 352 (mapc
1f22ad24
AS
353 (lambda (b)
354 (and (vc-call-backend b 'registered file)
355 (vc-file-setprop file 'vc-backend b)
356 (throw 'found t)))
f8b72742 357 (if (or (not backend) (eq backend 'none))
1f22ad24
AS
358 vc-handled-backends
359 (cons backend vc-handled-backends))))
0e0d9831
GM
360 ;; File is not registered.
361 (vc-file-setprop file 'vc-backend 'none)
ce9f8ffb 362 nil)))))
0e0d9831 363
e4d26892
ER
364(defun vc-backend (file-or-list)
365 "Return the version control type of FILE-OR-LIST, nil if it's not registered.
366If the argument is a list, the files must all have the same back end."
0e0d9831 367 ;; `file' can be nil in several places (typically due to the use of
5232a436 368 ;; code like (vc-backend buffer-file-name)).
e4d26892
ER
369 (cond ((stringp file-or-list)
370 (let ((property (vc-file-getprop file-or-list 'vc-backend)))
371 ;; Note that internally, Emacs remembers unregistered
372 ;; files by setting the property to `none'.
373 (cond ((eq property 'none) nil)
374 (property)
375 ;; vc-registered sets the vc-backend property
376 (t (if (vc-registered file-or-list)
377 (vc-file-getprop file-or-list 'vc-backend)
378 nil)))))
379 ((and file-or-list (listp file-or-list))
380 (vc-backend (car file-or-list)))
381 (t
382 nil)))
383
0e0d9831
GM
384
385(defun vc-backend-subdirectory-name (file)
004f9b3f 386 "Return where the repository for the current directory is kept."
0e0d9831 387 (symbol-name (vc-backend file)))
e1c0c2d1 388
02d383eb 389(defun vc-name (file)
5eb2b516
DL
390 "Return the master name of FILE.
391If the file is not registered, or the master name is not known, return nil."
392 ;; TODO: This should ultimately become obsolete, at least up here
0e0d9831 393 ;; in vc-hooks.
02d383eb 394 (or (vc-file-getprop file 'vc-name)
64341022
AS
395 ;; force computation of the property by calling
396 ;; vc-BACKEND-registered explicitly
32ca5ee4
DN
397 (let ((backend (vc-backend file)))
398 (if (and backend
399 (vc-call-backend backend 'registered file))
400 (vc-file-getprop file 'vc-name)))))
e1c0c2d1 401
e0607aaa
SM
402(defun vc-checkout-model (backend files)
403 "Indicate how FILES are checked out.
0e0d9831 404
e0607aaa 405If FILES are not registered, this function always returns nil.
cb5af02a 406For registered files, the possible values are:
0e0d9831 407
fe3e2715 408 'implicit FILES are always writable, and checked out `implicitly'
0e0d9831
GM
409 when the user saves the first changes to the file.
410
e0607aaa 411 'locking FILES are read-only if up-to-date; user must type
db8afaee 412 \\[vc-next-action] before editing. Strict locking
0e0d9831
GM
413 is assumed.
414
e0607aaa 415 'announce FILES are read-only if up-to-date; user must type
db8afaee 416 \\[vc-next-action] before editing. But other users
0e0d9831 417 may be editing at the same time."
e0607aaa 418 (vc-call-backend backend 'checkout-model files))
7064821c 419
8d2b9c1a
AS
420(defun vc-user-login-name (file)
421 "Return the name under which the user accesses the given FILE."
422 (or (and (eq (string-match tramp-file-name-regexp file) 0)
423 ;; tramp case: execute "whoami" via tramp
ba2318b7
MA
424 (let ((default-directory (file-name-directory file))
425 process-file-side-effects)
8d2b9c1a
AS
426 (with-temp-buffer
427 (if (not (zerop (process-file "whoami" nil t)))
428 ;; fall through if "whoami" didn't work
429 nil
430 ;; remove trailing newline
431 (delete-region (1- (point-max)) (point-max))
432 (buffer-string)))))
433 ;; normal case
434 (user-login-name)
435 ;; if user-login-name is nil, return the UID as a string
436 (number-to-string (user-uid))))
0e0d9831 437
77bf3f54 438(defun vc-state (file &optional backend)
0e0d9831
GM
439 "Return the version control state of FILE.
440
bf741d33
JB
441A return of nil from this function means we have no information on the
442status of this file. Otherwise, the value returned is one of:
0e0d9831
GM
443
444 'up-to-date The working file is unmodified with respect to the
445 latest version on the current branch, and not locked.
446
447 'edited The working file has been edited by the user. If
448 locking is used for the file, this state means that
449 the current version is locked by the calling user.
da6062e6
PE
450 This status should *not* be reported for files
451 which have a changed mtime but the same content
f6d90772 452 as the repo copy.
0e0d9831
GM
453
454 USER The current version of the working file is locked by
455 some other USER (a string).
f8b72742 456
004f9b3f 457 'needs-update The file has not been edited by the user, but there is
0e0d9831 458 a more recent version on the current branch stored
004f9b3f 459 in the repository.
0e0d9831
GM
460
461 'needs-merge The file has been edited by the user, and there is also
462 a more recent version on the current branch stored in
004f9b3f 463 the repository. This state can only occur if locking
0e0d9831
GM
464 is not used for the file.
465
fae00181 466 'unlocked-changes The working version of the file is not locked,
0e0d9831
GM
467 but the working file has been changed with respect
468 to that version. This state can only occur for files
469 with locking; it represents an erroneous condition that
470 should be resolved by the user (vc-next-action will
fae00181
ER
471 prompt the user to do it).
472
473 'added Scheduled to go into the repository on the next commit.
14f26054 474 Often represented by vc-working-revision = \"0\" in VCSes
722f037f
ER
475 with monotonic IDs like Subversion and Mercurial.
476
484c1b1f 477 'removed Scheduled to be deleted from the repository on next commit.
527b313d 478
7fbb4797 479 'conflict The file contains conflicts as the result of a merge.
329a656e
JB
480 For now the conflicts are text conflicts. In the
481 future this might be extended to deal with metadata
7fbb4797
DN
482 conflicts too.
483
329a656e 484 'missing The file is not present in the file system, but the VC
dd0d723c
DN
485 system still tracks it.
486
4903369a 487 'ignored The file showed up in a dir-status listing with a flag
722f037f 488 indicating the version-control system is ignoring it,
527b313d
SS
489 Note: This property is not set reliably (some VCSes
490 don't have useful directory-status commands) so assume
722f037f 491 that any file with vc-state nil might be ignorable
527b313d 492 without VC knowing it.
722f037f 493
bf741d33 494 'unregistered The file is not under version control."
722f037f 495
a970a27e
ER
496 ;; Note: in Emacs 22 and older, return of nil meant the file was
497 ;; unregistered. This is potentially a source of
498 ;; backward-compatibility bugs.
fae00181 499
2a3897f5 500 ;; FIXME: New (sub)states needed (?):
2a3897f5 501 ;; - `copied' and `moved' (might be handled by `removed' and `added')
0e0d9831 502 (or (vc-file-getprop file 'vc-state)
dcbbecd4 503 (when (> (length file) 0) ;Why?? --Stef
77bf3f54
DN
504 (setq backend (or backend (vc-backend file)))
505 (when backend
dcbbecd4
SM
506 (vc-state-refresh file backend)))))
507
508(defun vc-state-refresh (file backend)
509 "Quickly recompute the `state' of FILE."
510 (vc-file-setprop
511 file 'vc-state
512 (vc-call-backend backend 'state-heuristic file)))
0e0d9831
GM
513
514(defsubst vc-up-to-date-p (file)
515 "Convenience function that checks whether `vc-state' of FILE is `up-to-date'."
516 (eq (vc-state file) 'up-to-date))
517
518(defun vc-default-state-heuristic (backend file)
d4e772c4 519 "Default implementation of vc-BACKEND-state-heuristic.
5eb2b516
DL
520It simply calls the real state computation function `vc-BACKEND-state'
521and does not employ any heuristic at all."
0e0d9831 522 (vc-call-backend backend 'state file))
1efcbf46 523
e767004f
AS
524(defun vc-workfile-unchanged-p (file)
525 "Return non-nil if FILE has not changed since the last checkout."
526 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
527 (lastmod (nth 5 (file-attributes file))))
70c8a390
CY
528 ;; This is a shortcut for determining when the workfile is
529 ;; unchanged. It can fail under some circumstances; see the
530 ;; discussion in bug#694.
531 (if (and checkout-time
532 ;; Tramp and Ange-FTP return this when they don't know the time.
533 (not (equal lastmod '(0 0))))
534 (equal checkout-time lastmod)
535 (let ((unchanged (vc-call workfile-unchanged-p file)))
536 (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))
537 unchanged))))
e767004f
AS
538
539(defun vc-default-workfile-unchanged-p (backend file)
004f9b3f 540 "Check if FILE is unchanged by diffing against the repository version.
e767004f 541Return non-nil if FILE is unchanged."
f8836381 542 (zerop (condition-case err
4392edab
AS
543 ;; If the implementation supports it, let the output
544 ;; go to *vc*, not *vc-diff*, since this is an internal call.
a749e19d 545 (vc-call-backend backend 'diff (list file) nil nil "*vc*")
f8836381
AS
546 (wrong-number-of-arguments
547 ;; If this error came from the above call to vc-BACKEND-diff,
548 ;; try again without the optional buffer argument (for
549 ;; backward compatibility). Otherwise, resignal.
550 (if (or (not (eq (cadr err)
551 (indirect-function
a749e19d 552 (vc-find-backend-function backend 'diff))))
a464a6c7 553 (not (eq (cl-caddr err) 4)))
0d2ce4ef 554 (signal (car err) (cdr err))
a749e19d 555 (vc-call-backend backend 'diff (list file)))))))
e767004f 556
77bf3f54 557(defun vc-working-revision (file &optional backend)
e4d26892 558 "Return the repository version from which FILE was checked out.
cb5af02a 559If FILE is not registered, this function always returns nil."
ac3f4c6f 560 (or (vc-file-getprop file 'vc-working-revision)
77bf3f54
DN
561 (progn
562 (setq backend (or backend (vc-backend file)))
563 (when backend
564 (vc-file-setprop file 'vc-working-revision
565 (vc-call-backend backend 'working-revision file))))))
b5446276 566
6e5d0e9e
SM
567;; Backward compatibility.
568(define-obsolete-function-alias
569 'vc-workfile-version 'vc-working-revision "23.1")
570(defun vc-default-working-revision (backend file)
571 (message
572 "`working-revision' not found: using the old `workfile-version' instead")
573 (vc-call-backend backend 'workfile-version file))
f2ee4191 574
0e0d9831
GM
575(defun vc-default-registered (backend file)
576 "Check if FILE is registered in BACKEND using vc-BACKEND-master-templates."
577 (let ((sym (vc-make-backend-sym backend 'master-templates)))
578 (unless (get backend 'vc-templates-grabbed)
a5f2b6ec 579 (put backend 'vc-templates-grabbed t))
0e0d9831
GM
580 (let ((result (vc-check-master-templates file (symbol-value sym))))
581 (if (stringp result)
582 (vc-file-setprop file 'vc-name result)
583 nil)))) ; Not registered
584
585(defun vc-possible-master (s dirname basename)
586 (cond
587 ((stringp s) (format s dirname basename))
588 ((functionp s)
589 ;; The template is a function to invoke. If the
590 ;; function returns non-nil, that means it has found a
591 ;; master. For backward compatibility, we also handle
592 ;; the case that the function throws a 'found atom
593 ;; and a pair (cons MASTER-FILE BACKEND).
594 (let ((result (catch 'found (funcall s dirname basename))))
595 (if (consp result) (car result) result)))))
596
597(defun vc-check-master-templates (file templates)
cb5af02a 598 "Return non-nil if there is a master corresponding to FILE.
0e0d9831
GM
599
600TEMPLATES is a list of strings or functions. If an element is a
601string, it must be a control string as required by `format', with two
602string placeholders, such as \"%sRCS/%s,v\". The directory part of
603FILE is substituted for the first placeholder, the basename of FILE
604for the second. If a file with the resulting name exists, it is taken
605as the master of FILE, and returned.
606
607If an element of TEMPLATES is a function, it is called with the
608directory part and the basename of FILE as arguments. It should
609return non-nil if it finds a master; that value is then returned by
610this function."
611 (let ((dirname (or (file-name-directory file) ""))
612 (basename (file-name-nondirectory file)))
613 (catch 'found
5eb2b516 614 (mapcar
0e0d9831
GM
615 (lambda (s)
616 (let ((trial (vc-possible-master s dirname basename)))
b5446276
DN
617 (when (and trial (file-exists-p trial)
618 ;; Make sure the file we found with name
619 ;; TRIAL is not the source file itself.
620 ;; That can happen with RCS-style names if
621 ;; the file name is truncated (e.g. to 14
622 ;; chars). See if either directory or
623 ;; attributes differ.
624 (or (not (string= dirname
625 (file-name-directory trial)))
626 (not (equal (file-attributes file)
627 (file-attributes trial)))))
0e0d9831
GM
628 (throw 'found trial))))
629 templates))))
f2ee4191 630
86c60681
CY
631(define-obsolete-function-alias
632 'vc-toggle-read-only 'toggle-read-only "24.1")
594722a8 633
e896a9e1 634(defun vc-default-make-version-backups-p (backend file)
cb5af02a 635 "Return non-nil if unmodified versions should be backed up locally.
9aa10a43 636The default is to switch off this feature."
d445a975
AS
637 nil)
638
e896a9e1
AS
639(defun vc-version-backup-file-name (file &optional rev manual regexp)
640 "Return a backup file name for REV or the current version of FILE.
641If MANUAL is non-nil it means that a name for backups created by
642the user should be returned; if REGEXP is non-nil that means to return
643a regexp for matching all such backup files, regardless of the version."
e3f955b6
AS
644 (if regexp
645 (concat (regexp-quote (file-name-nondirectory file))
d4c813e9 646 "\\.~.+" (unless manual "\\.") "~")
f8b72742 647 (expand-file-name (concat (file-name-nondirectory file)
d4c813e9 648 ".~" (subst-char-in-string
ac3f4c6f 649 ?/ ?_ (or rev (vc-working-revision file)))
e3f955b6
AS
650 (unless manual ".") "~")
651 (file-name-directory file))))
e896a9e1
AS
652
653(defun vc-delete-automatic-version-backups (file)
654 "Delete all existing automatic version backups for FILE."
d455f4f7 655 (condition-case nil
a549ce70 656 (mapc
d455f4f7 657 'delete-file
79e954d0 658 (directory-files (or (file-name-directory file) default-directory) t
d455f4f7
SM
659 (vc-version-backup-file-name file nil nil t)))
660 ;; Don't fail when the directory doesn't exist.
661 (file-error nil)))
e896a9e1
AS
662
663(defun vc-make-version-backup (file)
664 "Make a backup copy of FILE, which is assumed in sync with the repository.
665Before doing that, check if there are any old backups and get rid of them."
48b15d3f 666 (unless (and (fboundp 'msdos-long-file-names)
ee9be3de 667 (not (with-no-warnings (msdos-long-file-names))))
48b15d3f 668 (vc-delete-automatic-version-backups file)
27707243
AS
669 (condition-case nil
670 (copy-file file (vc-version-backup-file-name file)
671 nil 'keep-date)
672 ;; It's ok if it doesn't work (e.g. directory not writable),
673 ;; since this is just for efficiency.
bf247b6e 674 (file-error
27707243
AS
675 (message
676 (concat "Warning: Cannot make version backup; "
677 "diff/revert therefore not local"))))))
d445a975
AS
678
679(defun vc-before-save ()
680 "Function to be called by `basic-save-buffer' (in files.el)."
681 ;; If the file on disk is still in sync with the repository,
682 ;; and version backups should be made, copy the file to
683 ;; another name. This enables local diffs and local reverting.
e0607aaa
SM
684 (let ((file buffer-file-name)
685 backend)
f42af255 686 (ignore-errors ;Be careful not to prevent saving the file.
ac87de97
DG
687 (unless (file-exists-p file)
688 (vc-file-clearprops file))
e0607aaa 689 (and (setq backend (vc-backend file))
f42af255 690 (vc-up-to-date-p file)
70e2f6c7 691 (eq (vc-checkout-model backend (list file)) 'implicit)
a749e19d 692 (vc-call-backend backend 'make-version-backups-p file)
f42af255 693 (vc-make-version-backup file)))))
d445a975 694
74d0991f 695(declare-function vc-dir-resynch-file "vc-dir" (&optional fname))
004a00f4 696
dcbbecd4
SM
697(defvar vc-dir-buffers nil "List of vc-dir buffers.")
698
e66eac08 699(defun vc-after-save ()
0e0d9831 700 "Function to be called by `basic-save-buffer' (in files.el)."
5eb2b516 701 ;; If the file in the current buffer is under version control,
0e0d9831
GM
702 ;; up-to-date, and locking is not used for the file, set
703 ;; the state to 'edited and redisplay the mode line.
e0607aaa
SM
704 (let* ((file buffer-file-name)
705 (backend (vc-backend file)))
58ba7b1b
CY
706 (cond
707 ((null backend))
708 ((eq (vc-checkout-model backend (list file)) 'implicit)
709 ;; If the file was saved in the same second in which it was
710 ;; checked out, clear the checkout-time to avoid confusion.
711 (if (equal (vc-file-getprop file 'vc-checkout-time)
712 (nth 5 (file-attributes file)))
713 (vc-file-setprop file 'vc-checkout-time nil))
714 (if (vc-state-refresh file backend)
715 (vc-mode-line file backend)))
716 ;; If we saved an unlocked file on a locking based VCS, that
717 ;; file is not longer up-to-date.
718 ((eq (vc-file-getprop file 'vc-state) 'up-to-date)
719 (vc-file-setprop file 'vc-state nil)))
720 ;; Resynch *vc-dir* buffers, if any are present.
dcbbecd4
SM
721 (when vc-dir-buffers
722 (vc-dir-resynch-file file))))
04446ed0 723
e2247dc8 724(defvar vc-menu-entry
8f43cbf3 725 `(menu-item ,(purecopy "Version Control") vc-menu-map
e2247dc8
SM
726 :filter vc-menu-map-filter))
727
728(when (boundp 'menu-bar-tools-menu)
729 ;; We do not need to worry here about the placement of this entry
730 ;; because menu-bar.el has already created the proper spot for us
731 ;; and this will simply use it.
732 (define-key menu-bar-tools-menu [vc] vc-menu-entry))
733
5719a098
SM
734(defconst vc-mode-line-map
735 (let ((map (make-sparse-keymap)))
e2247dc8 736 (define-key map [mode-line down-mouse-1] vc-menu-entry)
5719a098
SM
737 map))
738
32ca5ee4 739(defun vc-mode-line (file &optional backend)
7bc2b98b 740 "Set `vc-mode' to display type of version control for FILE.
594722a8 741The value is set in the current buffer, which should be the buffer
32ca5ee4
DN
742visiting FILE.
743If BACKEND is passed use it as the VC backend when computing the result."
67c6f446 744 (interactive (list buffer-file-name))
32ca5ee4
DN
745 (setq backend (or backend (vc-backend file)))
746 (if (not backend)
747 (setq vc-mode nil)
748 (let* ((ml-string (vc-call-backend backend 'mode-line-string file))
749 (ml-echo (get-text-property 0 'help-echo ml-string)))
750 (setq vc-mode
751 (concat
752 " "
753 (if (null vc-display-status)
754 (symbol-name backend)
755 (propertize
756 ml-string
757 'mouse-face 'mode-line-highlight
758 'help-echo
759 (concat (or ml-echo
760 (format "File under the %s version control system"
761 backend))
762 "\nmouse-1: Version Control menu")
763 'local-map vc-mode-line-map)))))
32ca5ee4
DN
764 ;; If the user is root, and the file is not owner-writable,
765 ;; then pretend that we can't write it
766 ;; even though we can (because root can write anything).
767 ;; This way, even root cannot modify a file that isn't locked.
768 (and (equal file buffer-file-name)
769 (not buffer-read-only)
770 (zerop (user-real-uid))
771 (zerop (logand (file-modes buffer-file-name) 128))
772 (setq buffer-read-only t)))
773 (force-mode-line-update)
774 backend)
0e0d9831
GM
775
776(defun vc-default-mode-line-string (backend file)
37269466 777 "Return a string for `vc-mode-line' to put in the mode line for FILE.
0e0d9831
GM
778Format:
779
780 \"BACKEND-REV\" if the file is up-to-date
781 \"BACKEND:REV\" if the file is edited (or locked by the calling user)
782 \"BACKEND:LOCKER:REV\" if the file is locked by somebody else
cad90f3b
EZ
783 \"BACKEND@REV\" if the file was locally added
784 \"BACKEND!REV\" if the file contains conflicts or was removed
785 \"BACKEND?REV\" if the file is under VC, but is missing
0e0d9831
GM
786
787This function assumes that the file is registered."
77bf3f54
DN
788 (let* ((backend-name (symbol-name backend))
789 (state (vc-state file backend))
790 (state-echo nil)
791 (rev (vc-working-revision file backend)))
82c4728d
DN
792 (propertize
793 (cond ((or (eq state 'up-to-date)
3702367b 794 (eq state 'needs-update))
82c4728d 795 (setq state-echo "Up to date file")
77bf3f54 796 (concat backend-name "-" rev))
82c4728d
DN
797 ((stringp state)
798 (setq state-echo (concat "File locked by" state))
77bf3f54 799 (concat backend-name ":" state ":" rev))
45b24b4d
SM
800 ((eq state 'added)
801 (setq state-echo "Locally added file")
77bf3f54 802 (concat backend-name "@" rev))
7fbb4797
DN
803 ((eq state 'conflict)
804 (setq state-echo "File contains conflicts after the last merge")
77bf3f54 805 (concat backend-name "!" rev))
a58b57e2
DN
806 ((eq state 'removed)
807 (setq state-echo "File removed from the VC system")
77bf3f54 808 (concat backend-name "!" rev))
a58b57e2
DN
809 ((eq state 'missing)
810 (setq state-echo "File tracked by the VC system, but missing from the file system")
77bf3f54 811 (concat backend-name "?" rev))
82c4728d
DN
812 (t
813 ;; Not just for the 'edited state, but also a fallback
814 ;; for all other states. Think about different symbols
3702367b 815 ;; for 'needs-update and 'needs-merge.
3a12f9f8 816 (setq state-echo "Locally modified file")
77bf3f54
DN
817 (concat backend-name ":" rev)))
818 'help-echo (concat state-echo " under the " backend-name
3a12f9f8 819 " version control system"))))
f2ee4191 820
a3a39848 821(defun vc-follow-link ()
0e0d9831
GM
822 "If current buffer visits a symbolic link, visit the real file.
823If the real file is already visited in another buffer, make that buffer
824current, and kill the buffer that visits the link."
33f95a82 825 (let* ((true-buffer (find-buffer-visiting buffer-file-truename))
e7f5ddc2
RS
826 (this-buffer (current-buffer)))
827 (if (eq true-buffer this-buffer)
066b7259 828 (let ((truename buffer-file-truename))
d8221951 829 (kill-buffer this-buffer)
e7f5ddc2
RS
830 ;; In principle, we could do something like set-visited-file-name.
831 ;; However, it can't be exactly the same as set-visited-file-name.
832 ;; I'm not going to work out the details right now. -- rms.
d8221951 833 (set-buffer (find-file-noselect truename)))
e7f5ddc2
RS
834 (set-buffer true-buffer)
835 (kill-buffer this-buffer))))
a3a39848 836
b8d1db77
SM
837(defun vc-default-find-file-hook (backend)
838 nil)
839
594722a8 840(defun vc-find-file-hook ()
be4d6a6f 841 "Function for `find-file-hook' activating VC mode if appropriate."
18c8a18e
PE
842 ;; Recompute whether file is version controlled,
843 ;; if user has killed the buffer and revisited.
32ca5ee4
DN
844 (when vc-mode
845 (setq vc-mode nil))
0e0d9831 846 (when buffer-file-name
f2ee4191 847 (vc-file-clearprops buffer-file-name)
8c6eab5a
SM
848 ;; FIXME: Why use a hook? Why pass it buffer-file-name?
849 (add-hook 'vc-mode-line-hook 'vc-mode-line nil t)
32ca5ee4
DN
850 (let (backend)
851 (cond
852 ((setq backend (with-demoted-errors (vc-backend buffer-file-name)))
37269466 853 ;; Compute the state and put it in the mode line.
32ca5ee4
DN
854 (vc-mode-line buffer-file-name backend)
855 (unless vc-make-backup-files
856 ;; Use this variable, not make-backup-files,
857 ;; because this is for things that depend on the file name.
858 (set (make-local-variable 'backup-inhibited) t))
859 ;; Let the backend setup any buffer-local things he needs.
860 (vc-call-backend backend 'find-file-hook))
cb5d51dc
YN
861 ((let* ((truename (expand-file-name buffer-file-truename))
862 (link-type (and (not (equal buffer-file-name truename))
863 (vc-backend truename))))
32ca5ee4
DN
864 (cond ((not link-type) nil) ;Nothing to do.
865 ((eq vc-follow-symlinks nil)
0bfb74a9 866 (message
32ca5ee4
DN
867 "Warning: symbolic link to %s-controlled source file" link-type))
868 ((or (not (eq vc-follow-symlinks 'ask))
869 ;; If we already visited this file by following
870 ;; the link, don't ask again if we try to visit
871 ;; it again. GUD does that, and repeated questions
872 ;; are painful.
873 (get-file-buffer
874 (abbreviate-file-name
875 (file-chase-links buffer-file-name))))
876
877 (vc-follow-link)
878 (message "Followed link to %s" buffer-file-name)
879 (vc-find-file-hook))
880 (t
881 (if (yes-or-no-p (format
882 "Symbolic link to %s-controlled source file; follow link? " link-type))
883 (progn (vc-follow-link)
884 (message "Followed link to %s" buffer-file-name)
885 (vc-find-file-hook))
886 (message
887 "Warning: editing through the link bypasses version control")
888 )))))))))
594722a8 889
be4d6a6f 890(add-hook 'find-file-hook 'vc-find-file-hook)
594722a8 891
f2ee4191 892(defun vc-kill-buffer-hook ()
0e0d9831 893 "Discard VC info about a file when we kill its buffer."
b5446276 894 (when buffer-file-name (vc-file-clearprops buffer-file-name)))
f2ee4191 895
cd32d5d1 896(add-hook 'kill-buffer-hook 'vc-kill-buffer-hook)
f2ee4191 897
14fef9de
SM
898;; Now arrange for (autoloaded) bindings of the main package.
899;; Bindings for this have to go in the global map, as we'll often
900;; want to call them from random buffers.
901
902;; Autoloading works fine, but it prevents shortcuts from appearing
903;; in the menu because they don't exist yet when the menu is built.
904;; (autoload 'vc-prefix-map "vc" nil nil 'keymap)
905(defvar vc-prefix-map
906 (let ((map (make-sparse-keymap)))
907 (define-key map "a" 'vc-update-change-log)
908 (define-key map "b" 'vc-switch-backend)
e4d26892 909 (define-key map "c" 'vc-rollback)
e1aec6fb 910 (define-key map "d" 'vc-dir)
14fef9de
SM
911 (define-key map "g" 'vc-annotate)
912 (define-key map "h" 'vc-insert-headers)
913 (define-key map "i" 'vc-register)
914 (define-key map "l" 'vc-print-log)
32ba3abc 915 (define-key map "L" 'vc-print-root-log)
54d3626e
DN
916 (define-key map "I" 'vc-log-incoming)
917 (define-key map "O" 'vc-log-outgoing)
14fef9de 918 (define-key map "m" 'vc-merge)
370fded4
ER
919 (define-key map "r" 'vc-retrieve-tag)
920 (define-key map "s" 'vc-create-tag)
e4d26892 921 (define-key map "u" 'vc-revert)
14fef9de 922 (define-key map "v" 'vc-next-action)
e4d26892 923 (define-key map "+" 'vc-update)
14fef9de 924 (define-key map "=" 'vc-diff)
32ba3abc 925 (define-key map "D" 'vc-root-diff)
0a0ca7f1 926 (define-key map "~" 'vc-revision-other-window)
14fef9de
SM
927 map))
928(fset 'vc-prefix-map vc-prefix-map)
e43273ef 929(define-key ctl-x-map "v" 'vc-prefix-map)
624c0e9d 930
e2247dc8
SM
931(defvar vc-menu-map
932 (let ((map (make-sparse-keymap "Version Control")))
933 ;;(define-key map [show-files]
934 ;; '("Show Files under VC" . (vc-directory t)))
1ec4b7b2
SM
935 (bindings--define-key map [vc-retrieve-tag]
936 '(menu-item "Retrieve Tag" vc-retrieve-tag
937 :help "Retrieve tagged version or branch"))
938 (bindings--define-key map [vc-create-tag]
939 '(menu-item "Create Tag" vc-create-tag
940 :help "Create version tag"))
941 (bindings--define-key map [separator1] menu-bar-separator)
942 (bindings--define-key map [vc-annotate]
943 '(menu-item "Annotate" vc-annotate
944 :help "Display the edit history of the current file using colors"))
945 (bindings--define-key map [vc-rename-file]
946 '(menu-item "Rename File" vc-rename-file
947 :help "Rename file"))
948 (bindings--define-key map [vc-revision-other-window]
949 '(menu-item "Show Other Version" vc-revision-other-window
950 :help "Visit another version of the current file in another window"))
951 (bindings--define-key map [vc-diff]
952 '(menu-item "Compare with Base Version" vc-diff
953 :help "Compare file set with the base version"))
954 (bindings--define-key map [vc-root-diff]
955 '(menu-item "Compare Tree with Base Version" vc-root-diff
956 :help "Compare current tree with the base version"))
957 (bindings--define-key map [vc-update-change-log]
958 '(menu-item "Update ChangeLog" vc-update-change-log
959 :help "Find change log file and add entries from recent version control logs"))
960 (bindings--define-key map [vc-log-out]
961 '(menu-item "Show Outgoing Log" vc-log-outgoing
962 :help "Show a log of changes that will be sent with a push operation"))
963 (bindings--define-key map [vc-log-in]
964 '(menu-item "Show Incoming Log" vc-log-incoming
965 :help "Show a log of changes that will be received with a pull operation"))
966 (bindings--define-key map [vc-print-log]
967 '(menu-item "Show History" vc-print-log
968 :help "List the change log of the current file set in a window"))
969 (bindings--define-key map [vc-print-root-log]
970 '(menu-item "Show Top of the Tree History " vc-print-root-log
971 :help "List the change log for the current tree in a window"))
972 (bindings--define-key map [separator2] menu-bar-separator)
973 (bindings--define-key map [vc-insert-header]
974 '(menu-item "Insert Header" vc-insert-headers
975 :help "Insert headers into a file for use with a version control system.
976"))
977 (bindings--define-key map [undo]
978 '(menu-item "Undo Last Check-In" vc-rollback
979 :help "Remove the most recent changeset committed to the repository"))
980 (bindings--define-key map [vc-revert]
981 '(menu-item "Revert to Base Version" vc-revert
982 :help "Revert working copies of the selected file set to their repository contents"))
983 (bindings--define-key map [vc-update]
984 '(menu-item "Update to Latest Version" vc-update
985 :help "Update the current fileset's files to their tip revisions"))
986 (bindings--define-key map [vc-next-action]
987 '(menu-item "Check In/Out" vc-next-action
988 :help "Do the next logical version control operation on the current fileset"))
989 (bindings--define-key map [vc-register]
990 '(menu-item "Register" vc-register
991 :help "Register file set into a version control system"))
992 (bindings--define-key map [vc-dir]
993 '(menu-item "VC Dir" vc-dir
994 :help "Show the VC status of files in a directory"))
e2247dc8
SM
995 map))
996
997(defalias 'vc-menu-map vc-menu-map)
998
d270305a 999(declare-function vc-responsible-backend "vc" (file))
aafb0703 1000
e2247dc8
SM
1001(defun vc-menu-map-filter (orig-binding)
1002 (if (and (symbolp orig-binding) (fboundp orig-binding))
1003 (setq orig-binding (indirect-function orig-binding)))
1004 (let ((ext-binding
f3d57a2c 1005 (when vc-mode
aafb0703 1006 (vc-call-backend
f3d57a2c
DN
1007 (if buffer-file-name
1008 (vc-backend buffer-file-name)
1009 (vc-responsible-backend default-directory))
1010 'extra-menu))))
e2247dc8
SM
1011 ;; Give the VC backend a chance to add menu entries
1012 ;; specific for that backend.
1013 (if (null ext-binding)
98481bad 1014 orig-binding
e2247dc8 1015 (append orig-binding
04991a1c 1016 '((ext-menu-separator "--"))
98481bad 1017 ext-binding))))
738efc8e 1018
cb223bba
DN
1019(defun vc-default-extra-menu (backend)
1020 nil)
1021
594722a8
ER
1022(provide 'vc-hooks)
1023
1024;;; vc-hooks.el ends here