(ediff-copy-list): Use `defalias' instead of
[emacs.git] / lisp / vc-hooks.el
blob1052892666c7c4bcb0823e5398742a8d42399ab9
1 ;;; vc-hooks.el --- resident support for version-control
3 ;; Copyright (C) 1992,93,94,95,96,98,99,2000 Free Software Foundation, Inc.
5 ;; Author: FSF (see vc.el for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
8 ;; $Id: vc-hooks.el,v 1.141 2002/07/19 13:26:11 spiegel Exp $
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
27 ;;; Commentary:
29 ;; This is the always-loaded portion of VC. It takes care of
30 ;; VC-related activities that are done when you visit a file, so that
31 ;; vc.el itself is loaded only when you use a VC command. See the
32 ;; commentary of vc.el.
34 ;;; Code:
36 (eval-when-compile
37 (require 'cl))
39 ;; Customization Variables (the rest is in vc.el)
41 (defvar vc-ignore-vc-files nil "Obsolete -- use `vc-handled-backends'.")
42 (defvar vc-master-templates () "Obsolete -- use vc-BACKEND-master-templates.")
43 (defvar vc-header-alist () "Obsolete -- use vc-BACKEND-header.")
45 (defcustom vc-handled-backends '(RCS CVS SCCS)
46 "*List of version control backends for which VC will be used.
47 Entries in this list will be tried in order to determine whether a
48 file is under that sort of version control.
49 Removing an entry from the list prevents VC from being activated
50 when visiting a file managed by that backend.
51 An empty list disables VC altogether."
52 :type '(repeat symbol)
53 :version "21.1"
54 :group 'vc)
56 (defcustom vc-path
57 (if (file-directory-p "/usr/sccs")
58 '("/usr/sccs")
59 nil)
60 "*List of extra directories to search for version control commands."
61 :type '(repeat directory)
62 :group 'vc)
64 (defcustom vc-make-backup-files nil
65 "*If non-nil, backups of registered files are made as with other files.
66 If nil (the default), files covered by version control don't get backups."
67 :type 'boolean
68 :group 'vc)
70 (defcustom vc-follow-symlinks 'ask
71 "*What to do if visiting a symbolic link to a file under version control.
72 Editing such a file through the link bypasses the version control system,
73 which is dangerous and probably not what you want.
75 If this variable is t, VC follows the link and visits the real file,
76 telling you about it in the echo area. If it is `ask', VC asks for
77 confirmation whether it should follow the link. If nil, the link is
78 visited and a warning displayed."
79 :type '(choice (const :tag "Ask for confirmation" ask)
80 (const :tag "Visit link and warn" nil)
81 (const :tag "Follow link" t))
82 :group 'vc)
84 (defcustom vc-display-status t
85 "*If non-nil, display revision number and lock status in modeline.
86 Otherwise, not displayed."
87 :type 'boolean
88 :group 'vc)
91 (defcustom vc-consult-headers t
92 "*If non-nil, identify work files by searching for version headers."
93 :type 'boolean
94 :group 'vc)
96 (defcustom vc-keep-workfiles t
97 "*If non-nil, don't delete working files after registering changes.
98 If the back-end is CVS, workfiles are always kept, regardless of the
99 value of this flag."
100 :type 'boolean
101 :group 'vc)
103 (defcustom vc-mistrust-permissions nil
104 "*If non-nil, don't assume permissions/ownership track version-control status.
105 If nil, do rely on the permissions.
106 See also variable `vc-consult-headers'."
107 :type 'boolean
108 :group 'vc)
110 (defun vc-mistrust-permissions (file)
111 "Internal access function to variable `vc-mistrust-permissions' for FILE."
112 (or (eq vc-mistrust-permissions 't)
113 (and vc-mistrust-permissions
114 (funcall vc-mistrust-permissions
115 (vc-backend-subdirectory-name file)))))
117 ;;; This is handled specially now.
118 ;; Tell Emacs about this new kind of minor mode
119 ;; (add-to-list 'minor-mode-alist '(vc-mode vc-mode))
121 (make-variable-buffer-local 'vc-mode)
122 (put 'vc-mode 'permanent-local t)
124 (defun vc-mode (&optional arg)
125 ;; Dummy function for C-h m
126 "Version Control minor mode.
127 This minor mode is automatically activated whenever you visit a file under
128 control of one of the revision control systems in `vc-handled-backends'.
129 VC commands are globally reachable under the prefix `\\[vc-prefix-map]':
130 \\{vc-prefix-map}")
132 (defmacro vc-error-occurred (&rest body)
133 `(condition-case nil (progn ,@body nil) (error t)))
135 ;; We need a notion of per-file properties because the version
136 ;; control state of a file is expensive to derive --- we compute
137 ;; them when the file is initially found, keep them up to date
138 ;; during any subsequent VC operations, and forget them when
139 ;; the buffer is killed.
141 (defvar vc-file-prop-obarray (make-vector 17 0)
142 "Obarray for per-file properties.")
144 (defvar vc-touched-properties nil)
146 (defun vc-file-setprop (file property value)
147 "Set per-file VC PROPERTY for FILE to VALUE."
148 (if (and vc-touched-properties
149 (not (memq property vc-touched-properties)))
150 (setq vc-touched-properties (append (list property)
151 vc-touched-properties)))
152 (put (intern file vc-file-prop-obarray) property value))
154 (defun vc-file-getprop (file property)
155 "Get per-file VC PROPERTY for FILE."
156 (get (intern file vc-file-prop-obarray) property))
158 (defun vc-file-clearprops (file)
159 "Clear all VC properties of FILE."
160 (setplist (intern file vc-file-prop-obarray) nil))
163 ;; We keep properties on each symbol naming a backend as follows:
164 ;; * `vc-functions': an alist mapping vc-FUNCTION to vc-BACKEND-FUNCTION.
166 (defun vc-make-backend-sym (backend sym)
167 "Return BACKEND-specific version of VC symbol SYM."
168 (intern (concat "vc-" (downcase (symbol-name backend))
169 "-" (symbol-name sym))))
171 (defun vc-find-backend-function (backend fun)
172 "Return BACKEND-specific implementation of FUN.
173 If there is no such implementation, return the default implementation;
174 if that doesn't exist either, return nil."
175 (let ((f (vc-make-backend-sym backend fun)))
176 (if (fboundp f) f
177 ;; Load vc-BACKEND.el if needed.
178 (require (intern (concat "vc-" (downcase (symbol-name backend)))))
179 (if (fboundp f) f
180 (let ((def (vc-make-backend-sym 'default fun)))
181 (if (fboundp def) (cons def backend) nil))))))
183 (defun vc-call-backend (backend function-name &rest args)
184 "Call for BACKEND the implementation of FUNCTION-NAME with the given ARGS.
185 Calls
187 (apply 'vc-BACKEND-FUN ARGS)
189 if vc-BACKEND-FUN exists (after trying to find it in vc-BACKEND.el)
190 and else calls
192 (apply 'vc-default-FUN BACKEND ARGS)
194 It is usually called via the `vc-call' macro."
195 (let ((f (cdr (assoc function-name (get backend 'vc-functions)))))
196 (unless f
197 (setq f (vc-find-backend-function backend function-name))
198 (put backend 'vc-functions (cons (cons function-name f)
199 (get backend 'vc-functions))))
200 (if (consp f)
201 (apply (car f) (cdr f) args)
202 (apply f args))))
204 (defmacro vc-call (fun file &rest args)
205 ;; BEWARE!! `file' is evaluated twice!!
206 `(vc-call-backend (vc-backend ,file) ',fun ,file ,@args))
209 (defsubst vc-parse-buffer (pattern i)
210 "Find PATTERN in the current buffer and return its Ith submatch."
211 (goto-char (point-min))
212 (if (re-search-forward pattern nil t)
213 (match-string i)))
215 (defun vc-insert-file (file &optional limit blocksize)
216 "Insert the contents of FILE into the current buffer.
218 Optional argument LIMIT is a regexp. If present, the file is inserted
219 in chunks of size BLOCKSIZE (default 8 kByte), until the first
220 occurrence of LIMIT is found. Anything from the start of that occurence
221 to the end of the buffer is then deleted. The function returns
222 non-nil if FILE exists and its contents were successfully inserted."
223 (erase-buffer)
224 (when (file-exists-p file)
225 (if (not limit)
226 (insert-file-contents file)
227 (if (not blocksize) (setq blocksize 8192))
228 (let ((filepos 0))
229 (while
230 (and (< 0 (cadr (insert-file-contents
231 file nil filepos (incf filepos blocksize))))
232 (progn (beginning-of-line)
233 (let ((pos (re-search-forward limit nil 'move)))
234 (if pos (delete-region (match-beginning 0)
235 (point-max)))
236 (not pos)))))))
237 (set-buffer-modified-p nil)
240 ;; Access functions to file properties
241 ;; (Properties should be _set_ using vc-file-setprop, but
242 ;; _retrieved_ only through these functions, which decide
243 ;; if the property is already known or not. A property should
244 ;; only be retrieved by vc-file-getprop if there is no
245 ;; access function.)
247 ;; properties indicating the backend being used for FILE
249 (defun vc-registered (file)
250 "Return non-nil if FILE is registered in a version control system.
252 This function performs the check each time it is called. To rely
253 on the result of a previous call, use `vc-backend' instead. If the
254 file was previously registered under a certain backend, then that
255 backend is tried first."
256 (let (handler)
257 (if (boundp 'file-name-handler-alist)
258 (setq handler (find-file-name-handler file 'vc-registered)))
259 (if handler
260 ;; handler should set vc-backend and return t if registered
261 (funcall handler 'vc-registered file)
262 ;; There is no file name handler.
263 ;; Try vc-BACKEND-registered for each handled BACKEND.
264 (catch 'found
265 (let ((backend (vc-file-getprop file 'vc-backend)))
266 (mapcar
267 (lambda (b)
268 (and (vc-call-backend b 'registered file)
269 (vc-file-setprop file 'vc-backend b)
270 (throw 'found t)))
271 (if (or (not backend) (eq backend 'none))
272 vc-handled-backends
273 (cons backend vc-handled-backends))))
274 ;; File is not registered.
275 (vc-file-setprop file 'vc-backend 'none)
276 nil))))
278 (defun vc-backend (file)
279 "Return the version control type of FILE, nil if it is not registered."
280 ;; `file' can be nil in several places (typically due to the use of
281 ;; code like (vc-backend (buffer-file-name))).
282 (when (stringp file)
283 (let ((property (vc-file-getprop file 'vc-backend)))
284 ;; Note that internally, Emacs remembers unregistered
285 ;; files by setting the property to `none'.
286 (cond ((eq property 'none) nil)
287 (property)
288 ;; vc-registered sets the vc-backend property
289 (t (if (vc-registered file)
290 (vc-file-getprop file 'vc-backend)
291 nil))))))
293 (defun vc-backend-subdirectory-name (file)
294 "Return where the master and lock FILEs for the current directory are kept."
295 (symbol-name (vc-backend file)))
297 (defun vc-name (file)
298 "Return the master name of FILE.
299 If the file is not registered, or the master name is not known, return nil."
300 ;; TODO: This should ultimately become obsolete, at least up here
301 ;; in vc-hooks.
302 (or (vc-file-getprop file 'vc-name)
303 ;; force computation of the property by calling
304 ;; vc-BACKEND-registered explicitly
305 (if (and (vc-backend file)
306 (vc-call-backend (vc-backend file) 'registered file))
307 (vc-file-getprop file 'vc-name))))
309 (defun vc-checkout-model (file)
310 "Indicate how FILE is checked out.
312 If FILE is not registered, this function always returns nil.
313 For registered files, the possible values are:
315 'implicit FILE is always writeable, and checked out `implicitly'
316 when the user saves the first changes to the file.
318 'locking FILE is read-only if up-to-date; user must type
319 \\[vc-next-action] before editing. Strict locking
320 is assumed.
322 'announce FILE is read-only if up-to-date; user must type
323 \\[vc-next-action] before editing. But other users
324 may be editing at the same time."
325 (or (vc-file-getprop file 'vc-checkout-model)
326 (if (vc-backend file)
327 (vc-file-setprop file 'vc-checkout-model
328 (vc-call checkout-model file)))))
330 (defun vc-user-login-name (&optional uid)
331 "Return the name under which the user is logged in, as a string.
332 \(With optional argument UID, return the name of that user.)
333 This function does the same as function `user-login-name', but unlike
334 that, it never returns nil. If a UID cannot be resolved, that
335 UID is returned as a string."
336 (or (user-login-name uid)
337 (number-to-string (or uid (user-uid)))))
339 (defun vc-state (file)
340 "Return the version control state of FILE.
342 If FILE is not registered, this function always returns nil.
343 For registered files, the value returned is one of:
345 'up-to-date The working file is unmodified with respect to the
346 latest version on the current branch, and not locked.
348 'edited The working file has been edited by the user. If
349 locking is used for the file, this state means that
350 the current version is locked by the calling user.
352 USER The current version of the working file is locked by
353 some other USER (a string).
355 'needs-patch The file has not been edited by the user, but there is
356 a more recent version on the current branch stored
357 in the master file.
359 'needs-merge The file has been edited by the user, and there is also
360 a more recent version on the current branch stored in
361 the master file. This state can only occur if locking
362 is not used for the file.
364 'unlocked-changes The current version of the working file is not locked,
365 but the working file has been changed with respect
366 to that version. This state can only occur for files
367 with locking; it represents an erroneous condition that
368 should be resolved by the user (vc-next-action will
369 prompt the user to do it)."
370 (or (vc-file-getprop file 'vc-state)
371 (if (vc-backend file)
372 (vc-file-setprop file 'vc-state
373 (vc-call state-heuristic file)))))
375 (defsubst vc-up-to-date-p (file)
376 "Convenience function that checks whether `vc-state' of FILE is `up-to-date'."
377 (eq (vc-state file) 'up-to-date))
379 (defun vc-default-state-heuristic (backend file)
380 "Default implementation of vc-state-heuristic.
381 It simply calls the real state computation function `vc-BACKEND-state'
382 and does not employ any heuristic at all."
383 (vc-call-backend backend 'state file))
385 (defun vc-workfile-version (file)
386 "Return the version level of the current workfile FILE.
387 If FILE is not registered, this function always returns nil."
388 (or (vc-file-getprop file 'vc-workfile-version)
389 (if (vc-backend file)
390 (vc-file-setprop file 'vc-workfile-version
391 (vc-call workfile-version file)))))
393 ;;; actual version-control code starts here
395 (defun vc-default-registered (backend file)
396 "Check if FILE is registered in BACKEND using vc-BACKEND-master-templates."
397 (let ((sym (vc-make-backend-sym backend 'master-templates)))
398 (unless (get backend 'vc-templates-grabbed)
399 (put backend 'vc-templates-grabbed t)
400 (set sym (append (delq nil
401 (mapcar
402 (lambda (template)
403 (and (consp template)
404 (eq (cdr template) backend)
405 (car template)))
406 vc-master-templates))
407 (symbol-value sym))))
408 (let ((result (vc-check-master-templates file (symbol-value sym))))
409 (if (stringp result)
410 (vc-file-setprop file 'vc-name result)
411 nil)))) ; Not registered
413 (defun vc-possible-master (s dirname basename)
414 (cond
415 ((stringp s) (format s dirname basename))
416 ((functionp s)
417 ;; The template is a function to invoke. If the
418 ;; function returns non-nil, that means it has found a
419 ;; master. For backward compatibility, we also handle
420 ;; the case that the function throws a 'found atom
421 ;; and a pair (cons MASTER-FILE BACKEND).
422 (let ((result (catch 'found (funcall s dirname basename))))
423 (if (consp result) (car result) result)))))
425 (defun vc-check-master-templates (file templates)
426 "Return non-nil if there is a master corresponding to FILE.
428 TEMPLATES is a list of strings or functions. If an element is a
429 string, it must be a control string as required by `format', with two
430 string placeholders, such as \"%sRCS/%s,v\". The directory part of
431 FILE is substituted for the first placeholder, the basename of FILE
432 for the second. If a file with the resulting name exists, it is taken
433 as the master of FILE, and returned.
435 If an element of TEMPLATES is a function, it is called with the
436 directory part and the basename of FILE as arguments. It should
437 return non-nil if it finds a master; that value is then returned by
438 this function."
439 (let ((dirname (or (file-name-directory file) ""))
440 (basename (file-name-nondirectory file)))
441 (catch 'found
442 (mapcar
443 (lambda (s)
444 (let ((trial (vc-possible-master s dirname basename)))
445 (if (and trial (file-exists-p trial)
446 ;; Make sure the file we found with name
447 ;; TRIAL is not the source file itself.
448 ;; That can happen with RCS-style names if
449 ;; the file name is truncated (e.g. to 14
450 ;; chars). See if either directory or
451 ;; attributes differ.
452 (or (not (string= dirname
453 (file-name-directory trial)))
454 (not (equal (file-attributes file)
455 (file-attributes trial)))))
456 (throw 'found trial))))
457 templates))))
459 (defun vc-toggle-read-only (&optional verbose)
460 "Change read-only status of current buffer, perhaps via version control.
462 If the buffer is visiting a file registered with version control,
463 then check the file in or out. Otherwise, just change the read-only flag
464 of the buffer.
465 With prefix argument, ask for version number to check in or check out.
466 Check-out of a specified version number does not lock the file;
467 to do that, use this command a second time with no argument.
469 If you bind this function to \\[toggle-read-only], then Emacs checks files
470 in or out whenever you toggle the read-only flag."
471 (interactive "P")
472 (if (or (and (boundp 'vc-dired-mode) vc-dired-mode)
473 ;; use boundp because vc.el might not be loaded
474 (vc-backend (buffer-file-name)))
475 (vc-next-action verbose)
476 (toggle-read-only)))
478 (defun vc-default-make-version-backups-p (backend file)
479 "Return non-nil if unmodified versions should be backed up locally.
480 The default is to switch off this feature."
481 nil)
483 (defun vc-version-backup-file-name (file &optional rev manual regexp)
484 "Return a backup file name for REV or the current version of FILE.
485 If MANUAL is non-nil it means that a name for backups created by
486 the user should be returned; if REGEXP is non-nil that means to return
487 a regexp for matching all such backup files, regardless of the version."
488 (if regexp
489 (concat (regexp-quote (file-name-nondirectory file))
490 "\\.~[0-9.]+" (unless manual "\\.") "~")
491 (expand-file-name (concat (file-name-nondirectory file)
492 ".~" (or rev (vc-workfile-version file))
493 (unless manual ".") "~")
494 (file-name-directory file))))
496 (defun vc-delete-automatic-version-backups (file)
497 "Delete all existing automatic version backups for FILE."
498 (condition-case nil
499 (mapcar
500 'delete-file
501 (directory-files (or (file-name-directory file) default-directory) t
502 (vc-version-backup-file-name file nil nil t)))
503 ;; Don't fail when the directory doesn't exist.
504 (file-error nil)))
506 (defun vc-make-version-backup (file)
507 "Make a backup copy of FILE, which is assumed in sync with the repository.
508 Before doing that, check if there are any old backups and get rid of them."
509 (unless (and (fboundp 'msdos-long-file-names)
510 (not (msdos-long-file-names)))
511 (vc-delete-automatic-version-backups file)
512 (copy-file file (vc-version-backup-file-name file)
513 nil 'keep-date)))
515 (defun vc-before-save ()
516 "Function to be called by `basic-save-buffer' (in files.el)."
517 ;; If the file on disk is still in sync with the repository,
518 ;; and version backups should be made, copy the file to
519 ;; another name. This enables local diffs and local reverting.
520 (let ((file (buffer-file-name)))
521 (and (vc-backend file)
522 (vc-up-to-date-p file)
523 (eq (vc-checkout-model file) 'implicit)
524 (vc-call make-version-backups-p file)
525 (vc-make-version-backup file))))
527 (defun vc-after-save ()
528 "Function to be called by `basic-save-buffer' (in files.el)."
529 ;; If the file in the current buffer is under version control,
530 ;; up-to-date, and locking is not used for the file, set
531 ;; the state to 'edited and redisplay the mode line.
532 (let ((file (buffer-file-name)))
533 (and (vc-backend file)
534 (or (and (equal (vc-file-getprop file 'vc-checkout-time)
535 (nth 5 (file-attributes file)))
536 ;; File has been saved in the same second in which
537 ;; it was checked out. Clear the checkout-time
538 ;; to avoid confusion.
539 (vc-file-setprop file 'vc-checkout-time nil))
541 (vc-up-to-date-p file)
542 (eq (vc-checkout-model file) 'implicit)
543 (vc-file-setprop file 'vc-state 'edited)
544 (vc-mode-line file)
545 (if (featurep 'vc)
546 ;; If VC is not loaded, then there can't be
547 ;; any VC Dired buffer to synchronize.
548 (vc-dired-resynch-file file)))))
550 (defun vc-mode-line (file)
551 "Set `vc-mode' to display type of version control for FILE.
552 The value is set in the current buffer, which should be the buffer
553 visiting FILE."
554 (interactive (list buffer-file-name))
555 (if (not (vc-backend file))
556 (setq vc-mode nil)
557 (setq vc-mode (concat " " (if vc-display-status
558 (vc-call mode-line-string file)
559 (symbol-name (vc-backend file)))))
560 ;; If the file is locked by some other user, make
561 ;; the buffer read-only. Like this, even root
562 ;; cannot modify a file that someone else has locked.
563 (and (equal file (buffer-file-name))
564 (stringp (vc-state file))
565 (setq buffer-read-only t))
566 ;; If the user is root, and the file is not owner-writable,
567 ;; then pretend that we can't write it
568 ;; even though we can (because root can write anything).
569 ;; This way, even root cannot modify a file that isn't locked.
570 (and (equal file (buffer-file-name))
571 (not buffer-read-only)
572 (zerop (user-real-uid))
573 (zerop (logand (file-modes (buffer-file-name)) 128))
574 (setq buffer-read-only t)))
575 (force-mode-line-update)
576 (vc-backend file))
578 (defun vc-default-mode-line-string (backend file)
579 "Return string for placement in modeline by `vc-mode-line' for FILE.
580 Format:
582 \"BACKEND-REV\" if the file is up-to-date
583 \"BACKEND:REV\" if the file is edited (or locked by the calling user)
584 \"BACKEND:LOCKER:REV\" if the file is locked by somebody else
586 This function assumes that the file is registered."
587 (setq backend (symbol-name backend))
588 (let ((state (vc-state file))
589 (rev (vc-workfile-version file)))
590 (cond ((or (eq state 'up-to-date)
591 (eq state 'needs-patch))
592 (concat backend "-" rev))
593 ((stringp state)
594 (concat backend ":" state ":" rev))
596 ;; Not just for the 'edited state, but also a fallback
597 ;; for all other states. Think about different symbols
598 ;; for 'needs-patch and 'needs-merge.
599 (concat backend ":" rev)))))
601 (defun vc-follow-link ()
602 "If current buffer visits a symbolic link, visit the real file.
603 If the real file is already visited in another buffer, make that buffer
604 current, and kill the buffer that visits the link."
605 (let* ((truename (abbreviate-file-name (file-chase-links buffer-file-name)))
606 (true-buffer (find-buffer-visiting truename))
607 (this-buffer (current-buffer)))
608 (if (eq true-buffer this-buffer)
609 (progn
610 (kill-buffer this-buffer)
611 ;; In principle, we could do something like set-visited-file-name.
612 ;; However, it can't be exactly the same as set-visited-file-name.
613 ;; I'm not going to work out the details right now. -- rms.
614 (set-buffer (find-file-noselect truename)))
615 (set-buffer true-buffer)
616 (kill-buffer this-buffer))))
618 (defun vc-find-file-hook ()
619 "Function for `find-file-hooks' activating VC mode if appropriate."
620 ;; Recompute whether file is version controlled,
621 ;; if user has killed the buffer and revisited.
622 (if vc-mode
623 (setq vc-mode nil))
624 (when buffer-file-name
625 (vc-file-clearprops buffer-file-name)
626 (cond
627 ((vc-backend buffer-file-name)
628 (vc-mode-line buffer-file-name)
629 (cond ((not vc-make-backup-files)
630 ;; Use this variable, not make-backup-files,
631 ;; because this is for things that depend on the file name.
632 (make-local-variable 'backup-inhibited)
633 (setq backup-inhibited t))))
634 ((let* ((link (file-symlink-p buffer-file-name))
635 (link-type (and link (vc-backend (file-chase-links link)))))
636 (if link-type
637 (cond ((eq vc-follow-symlinks nil)
638 (message
639 "Warning: symbolic link to %s-controlled source file" link-type))
640 ((or (not (eq vc-follow-symlinks 'ask))
641 ;; If we already visited this file by following
642 ;; the link, don't ask again if we try to visit
643 ;; it again. GUD does that, and repeated questions
644 ;; are painful.
645 (get-file-buffer
646 (abbreviate-file-name
647 (file-chase-links buffer-file-name))))
649 (vc-follow-link)
650 (message "Followed link to %s" buffer-file-name)
651 (vc-find-file-hook))
653 (if (yes-or-no-p (format
654 "Symbolic link to %s-controlled source file; follow link? " link-type))
655 (progn (vc-follow-link)
656 (message "Followed link to %s" buffer-file-name)
657 (vc-find-file-hook))
658 (message
659 "Warning: editing through the link bypasses version control")
660 )))))))))
662 (add-hook 'find-file-hooks 'vc-find-file-hook)
664 ;; more hooks, this time for file-not-found
665 (defun vc-file-not-found-hook ()
666 "When file is not found, try to check it out from version control.
667 Returns t if checkout was successful, nil otherwise.
668 Used in `find-file-not-found-hooks'."
669 ;; When a file does not exist, ignore cached info about it
670 ;; from a previous visit.
671 (vc-file-clearprops buffer-file-name)
672 (if (and (vc-backend buffer-file-name)
673 (yes-or-no-p
674 (format "File %s was lost; check out from version control? "
675 (file-name-nondirectory buffer-file-name))))
676 (save-excursion
677 (require 'vc)
678 (setq default-directory (file-name-directory buffer-file-name))
679 (not (vc-error-occurred (vc-checkout buffer-file-name))))))
681 (add-hook 'find-file-not-found-hooks 'vc-file-not-found-hook)
683 (defun vc-kill-buffer-hook ()
684 "Discard VC info about a file when we kill its buffer."
685 (if (buffer-file-name)
686 (vc-file-clearprops (buffer-file-name))))
688 ;; ??? DL: why is this not done?
689 ;;;(add-hook 'kill-buffer-hook 'vc-kill-buffer-hook)
691 ;; Now arrange for (autoloaded) bindings of the main package.
692 ;; Bindings for this have to go in the global map, as we'll often
693 ;; want to call them from random buffers.
695 ;; Autoloading works fine, but it prevents shortcuts from appearing
696 ;; in the menu because they don't exist yet when the menu is built.
697 ;; (autoload 'vc-prefix-map "vc" nil nil 'keymap)
698 (defvar vc-prefix-map
699 (let ((map (make-sparse-keymap)))
700 (define-key map "a" 'vc-update-change-log)
701 (define-key map "b" 'vc-switch-backend)
702 (define-key map "c" 'vc-cancel-version)
703 (define-key map "d" 'vc-directory)
704 (define-key map "g" 'vc-annotate)
705 (define-key map "h" 'vc-insert-headers)
706 (define-key map "i" 'vc-register)
707 (define-key map "l" 'vc-print-log)
708 (define-key map "m" 'vc-merge)
709 (define-key map "r" 'vc-retrieve-snapshot)
710 (define-key map "s" 'vc-create-snapshot)
711 (define-key map "u" 'vc-revert-buffer)
712 (define-key map "v" 'vc-next-action)
713 (define-key map "=" 'vc-diff)
714 (define-key map "~" 'vc-version-other-window)
715 map))
716 (fset 'vc-prefix-map vc-prefix-map)
717 (define-key global-map "\C-xv" 'vc-prefix-map)
719 (if (not (boundp 'vc-menu-map))
720 ;; Don't do the menu bindings if menu-bar.el wasn't loaded to defvar
721 ;; vc-menu-map.
723 ;;(define-key vc-menu-map [show-files]
724 ;; '("Show Files under VC" . (vc-directory t)))
725 (define-key vc-menu-map [vc-retrieve-snapshot]
726 '("Retrieve Snapshot" . vc-retrieve-snapshot))
727 (define-key vc-menu-map [vc-create-snapshot]
728 '("Create Snapshot" . vc-create-snapshot))
729 (define-key vc-menu-map [vc-directory] '("VC Directory Listing" . vc-directory))
730 (define-key vc-menu-map [separator1] '("----"))
731 (define-key vc-menu-map [vc-annotate] '("Annotate" . vc-annotate))
732 (define-key vc-menu-map [vc-rename-file] '("Rename File" . vc-rename-file))
733 (define-key vc-menu-map [vc-version-other-window]
734 '("Show Other Version" . vc-version-other-window))
735 (define-key vc-menu-map [vc-diff] '("Compare with Base Version" . vc-diff))
736 (define-key vc-menu-map [vc-update-change-log]
737 '("Update ChangeLog" . vc-update-change-log))
738 (define-key vc-menu-map [vc-print-log] '("Show History" . vc-print-log))
739 (define-key vc-menu-map [separator2] '("----"))
740 (define-key vc-menu-map [vc-insert-header]
741 '("Insert Header" . vc-insert-headers))
742 (define-key vc-menu-map [undo] '("Undo Last Check-In" . vc-cancel-version))
743 (define-key vc-menu-map [vc-revert-buffer]
744 '("Revert to Base Version" . vc-revert-buffer))
745 (define-key vc-menu-map [vc-update]
746 '("Update to Latest Version" . vc-update))
747 (define-key vc-menu-map [vc-next-action] '("Check In/Out" . vc-next-action))
748 (define-key vc-menu-map [vc-register] '("Register" . vc-register)))
750 ;; These are not correct and it's not currently clear how doing it
751 ;; better (with more complicated expressions) might slow things down
752 ;; on older systems.
754 ;;(put 'vc-rename-file 'menu-enable 'vc-mode)
755 ;;(put 'vc-annotate 'menu-enable '(eq (vc-buffer-backend) 'CVS))
756 ;;(put 'vc-version-other-window 'menu-enable 'vc-mode)
757 ;;(put 'vc-diff 'menu-enable 'vc-mode)
758 ;;(put 'vc-update-change-log 'menu-enable
759 ;; '(member (vc-buffer-backend) '(RCS CVS)))
760 ;;(put 'vc-print-log 'menu-enable 'vc-mode)
761 ;;(put 'vc-cancel-version 'menu-enable 'vc-mode)
762 ;;(put 'vc-revert-buffer 'menu-enable 'vc-mode)
763 ;;(put 'vc-insert-headers 'menu-enable 'vc-mode)
764 ;;(put 'vc-next-action 'menu-enable 'vc-mode)
765 ;;(put 'vc-register 'menu-enable '(and buffer-file-name (not vc-mode)))
767 (provide 'vc-hooks)
769 ;;; vc-hooks.el ends here