Mercurial > emacs
annotate lisp/vc.el @ 8078:1dd92ac02141
(dired-x-hands-off-my-keys): New user-defined variable.
(dired-x-bind-find-file): Use it.
(dired-x-find-file): New function to substitute find-file.
(dired-x-find-file-other-window): New function to substitute
find-file-other-window.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 28 Jun 1994 18:41:05 +0000 |
parents | 4fd40bd394fe |
children | 74f972cffd3a |
rev | line source |
---|---|
904 | 1 ;;; vc.el --- drive a version-control system from within Emacs |
2 | |
7298 | 3 ;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. |
904 | 4 |
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> | |
5996 | 6 ;; Maintainer: eggert@twinsun.com |
5732
d97df1629181
vc-parse-buffer: arrange for old properties to get cleared when their
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
5578
diff
changeset
|
7 ;; Version: 5.5 |
904 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
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 2, or (at your option) | |
14 ;; any later version. | |
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 | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
27 ;; This mode is fully documented in the Emacs user's manual. |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
28 ;; |
904 | 29 ;; This was designed and implemented by Eric Raymond <esr@snark.thyrsus.com>. |
30 ;; Paul Eggert <eggert@twinsun.com>, Sebastian Kremer <sk@thp.uni-koeln.de>, | |
31 ;; and Richard Stallman contributed valuable criticism, support, and testing. | |
32 ;; | |
33 ;; Supported version-control systems presently include SCCS and RCS; | |
5578 | 34 ;; the RCS lock-stealing code doesn't work right unless you use RCS 5.6.2 |
35 ;; or newer. Currently (January 1994) that is only a beta test release. | |
904 | 36 ;; |
37 ;; The RCS code assumes strict locking. You can support the RCS -x option | |
38 ;; by adding pairs to the vc-master-templates list. | |
39 ;; | |
40 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff | |
41 ;; to be installed somewhere on Emacs's path for executables. | |
42 ;; | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
43 ;; If your site uses the ChangeLog convention supported by Emacs, the |
2464
667050db93ca
(vc-comment-to-change-log): Renamed from vc-comment-to-changelog.
Roland McGrath <roland@gnu.org>
parents:
2419
diff
changeset
|
44 ;; function vc-comment-to-change-log should prove a useful checkin hook. |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
45 ;; |
904 | 46 ;; This code depends on call-process passing back the subprocess exit |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
47 ;; status. Thus, you need Emacs 18.58 or later to run it. For the |
2691
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
48 ;; vc-directory command to work properly as documented, you need 19. |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
49 ;; You also need Emacs 19's ring.el. |
904 | 50 ;; |
51 ;; The vc code maintains some internal state in order to reduce expensive | |
52 ;; version-control operations to a minimum. Some names are only computed | |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
53 ;; once. If you perform version control operations with RCS/SCCS/CVS while |
904 | 54 ;; vc's back is turned, or move/rename master files while vc is running, |
55 ;; vc may get seriously confused. Don't do these things! | |
56 ;; | |
57 ;; Developer's notes on some concurrency issues are included at the end of | |
58 ;; the file. | |
59 | |
60 ;;; Code: | |
61 | |
62 (require 'vc-hooks) | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
63 (require 'ring) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
64 |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
65 (if (not (assoc 'vc-parent-buffer minor-mode-alist)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
66 (setq minor-mode-alist |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
67 (cons '(vc-parent-buffer vc-parent-buffer-name) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
68 minor-mode-alist))) |
904 | 69 |
70 ;; General customization | |
71 | |
72 (defvar vc-default-back-end nil | |
73 "*Back-end actually used by this interface; may be SCCS or RCS. | |
74 The value is only computed when needed to avoid an expensive search.") | |
75 (defvar vc-suppress-confirm nil | |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
76 "*If non-nil, treat user as expert; suppress yes-no prompts on some things.") |
904 | 77 (defvar vc-keep-workfiles t |
78 "*If non-nil, don't delete working files after registering changes.") | |
79 (defvar vc-initial-comment nil | |
80 "*Prompt for initial comment when a file is registered.") | |
81 (defvar vc-command-messages nil | |
82 "*Display run messages from back-end commands.") | |
83 (defvar vc-mistrust-permissions 'file-symlink-p | |
84 "*Don't assume that permissions and ownership track version-control status.") | |
1335
d649d430148d
(vc-checkin-switches): New defvar.
Roland McGrath <roland@gnu.org>
parents:
1243
diff
changeset
|
85 (defvar vc-checkin-switches nil |
d649d430148d
(vc-checkin-switches): New defvar.
Roland McGrath <roland@gnu.org>
parents:
1243
diff
changeset
|
86 "*Extra switches passed to the checkin program by \\[vc-checkin].") |
3959
103a29fa86b7
(vc-path): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3956
diff
changeset
|
87 (defvar vc-path |
103a29fa86b7
(vc-path): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3956
diff
changeset
|
88 (if (file-exists-p "/usr/sccs") |
103a29fa86b7
(vc-path): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3956
diff
changeset
|
89 '("/usr/sccs") nil) |
103a29fa86b7
(vc-path): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3956
diff
changeset
|
90 "*List of extra directories to search for version control commands.") |
1335
d649d430148d
(vc-checkin-switches): New defvar.
Roland McGrath <roland@gnu.org>
parents:
1243
diff
changeset
|
91 |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
92 (defconst vc-maximum-comment-ring-size 32 |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
93 "Maximum number of saved comments in the comment ring.") |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
94 |
2705
b4587e7ff4e5
(diff-switches): Define var here as well as in diff.el.
Richard M. Stallman <rms@gnu.org>
parents:
2692
diff
changeset
|
95 ;;; This is duplicated in diff.el. |
b4587e7ff4e5
(diff-switches): Define var here as well as in diff.el.
Richard M. Stallman <rms@gnu.org>
parents:
2692
diff
changeset
|
96 (defvar diff-switches "-c" |
b4587e7ff4e5
(diff-switches): Define var here as well as in diff.el.
Richard M. Stallman <rms@gnu.org>
parents:
2692
diff
changeset
|
97 "*A string or list of strings specifying switches to be be passed to diff.") |
b4587e7ff4e5
(diff-switches): Define var here as well as in diff.el.
Richard M. Stallman <rms@gnu.org>
parents:
2692
diff
changeset
|
98 |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
99 ;;;###autoload |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
100 (defvar vc-checkin-hook nil |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
101 "*List of functions called after a checkin is done. See `run-hooks'.") |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
102 |
904 | 103 ;; Header-insertion hair |
104 | |
105 (defvar vc-header-alist | |
106 '((SCCS "\%W\%") (RCS "\$Id\$")) | |
3227
b2e2fcc4fb24
(vc-steal-lock, vc-insert-headers): Fix question whitespace.
Richard M. Stallman <rms@gnu.org>
parents:
2968
diff
changeset
|
107 "*Header keywords to be inserted when `vc-insert-headers' is executed.") |
5015
368dd7e8095d
vc-static-header-alist shouldn't have been declared const.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
4991
diff
changeset
|
108 (defvar vc-static-header-alist |
904 | 109 '(("\\.c$" . |
110 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n")) | |
111 "*Associate static header string templates with file types. A \%s in the | |
112 template is replaced with the first string associated with the file's | |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
113 version-control type in `vc-header-alist'.") |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
114 |
904 | 115 (defvar vc-comment-alist |
116 '((nroff-mode ".\\\"" "")) | |
117 "*Special comment delimiters to be used in generating vc headers only. | |
118 Add an entry in this list if you need to override the normal comment-start | |
119 and comment-end variables. This will only be necessary if the mode language | |
120 is sensitive to blank lines.") | |
121 | |
5201
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
122 ;; Default is to be extra careful for super-user. |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
123 (defvar vc-checkout-carefully (= (user-uid) 0) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
124 "*Non-nil means be extra-careful in checkout. |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
125 Verify that the file really is not locked |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
126 and that its contents match what the master file says.") |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
127 |
904 | 128 ;; Variables the user doesn't need to know about. |
129 (defvar vc-log-entry-mode nil) | |
130 (defvar vc-log-operation nil) | |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
131 (defvar vc-log-after-operation-hook nil) |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
132 (defvar vc-checkout-writable-buffer-hook 'vc-checkout-writable-buffer) |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
133 (defvar vc-parent-buffer nil) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
134 (defvar vc-parent-buffer-name nil) |
904 | 135 |
1494
64f5e84c822b
(vc-admin): Pass t as noquery arg to vc-resynch-window.
Richard M. Stallman <rms@gnu.org>
parents:
1478
diff
changeset
|
136 (defvar vc-log-file) |
64f5e84c822b
(vc-admin): Pass t as noquery arg to vc-resynch-window.
Richard M. Stallman <rms@gnu.org>
parents:
1478
diff
changeset
|
137 (defvar vc-log-version) |
64f5e84c822b
(vc-admin): Pass t as noquery arg to vc-resynch-window.
Richard M. Stallman <rms@gnu.org>
parents:
1478
diff
changeset
|
138 |
904 | 139 (defconst vc-name-assoc-file "VC-names") |
140 | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
141 (defvar vc-dired-mode nil) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
142 (make-variable-buffer-local 'vc-dired-mode) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
143 |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
144 (defvar vc-comment-ring nil) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
145 (defvar vc-comment-ring-index nil) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
146 (defvar vc-last-comment-match nil) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
147 |
904 | 148 ;; File property caching |
149 | |
150 (defun vc-file-clearprops (file) | |
151 ;; clear all properties of a given file | |
152 (setplist (intern file vc-file-prop-obarray) nil)) | |
153 | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
154 (defun vc-clear-context () |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
155 "Clear all cached file properties and the comment ring." |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
156 (interactive) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
157 (fillarray vc-file-prop-obarray nil) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
158 ;; Note: there is potential for minor lossage here if there is an open |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
159 ;; log buffer with a nonzero local value of vc-comment-ring-index. |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
160 (setq vc-comment-ring nil)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
161 |
904 | 162 ;; Random helper functions |
163 | |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
164 (defun vc-registration-error (file) |
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
165 (if file |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
166 (error "File %s is not under version control" file) |
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
167 (error "Buffer %s is not associated with a file" (buffer-name)))) |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
168 |
904 | 169 (defvar vc-binary-assoc nil) |
170 | |
171 (defun vc-find-binary (name) | |
172 "Look for a command anywhere on the subprocess-command search path." | |
173 (or (cdr (assoc name vc-binary-assoc)) | |
4791
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
174 (catch 'found |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
175 (mapcar |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
176 (function |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
177 (lambda (s) |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
178 (if s |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
179 (let ((full (concat s "/" name))) |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
180 (if (file-executable-p full) |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
181 (progn |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
182 (setq vc-binary-assoc |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
183 (cons (cons name full) vc-binary-assoc)) |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
184 (throw 'found full))))))) |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
185 exec-path) |
3544f3a41ae6
(vc-find-binary): Fix bug; it always claimed success.
Paul Eggert <eggert@twinsun.com>
parents:
4770
diff
changeset
|
186 nil))) |
904 | 187 |
188 (defun vc-do-command (okstatus command file &rest flags) | |
189 "Execute a version-control command, notifying user and checking for errors. | |
190 The command is successful if its exit status does not exceed OKSTATUS. | |
191 Output from COMMAND goes to buffer *vc*. The last argument of the command is | |
192 the master name of FILE; this is appended to an optional list of FLAGS." | |
193 (setq file (expand-file-name file)) | |
194 (if vc-command-messages | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
195 (message "Running %s on %s..." command file)) |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
196 (let ((obuf (current-buffer)) (camefrom (current-buffer)) |
904 | 197 (squeezed nil) |
198 (vc-file (and file (vc-name file))) | |
199 status) | |
200 (set-buffer (get-buffer-create "*vc*")) | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
201 (set (make-local-variable 'vc-parent-buffer) camefrom) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
202 (set (make-local-variable 'vc-parent-buffer-name) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
203 (concat " from " (buffer-name camefrom))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
204 |
904 | 205 (erase-buffer) |
1674
75e8a7f920c7
* vc.el (vc-do-command): Set the default directory of the *vc*
Jim Blandy <jimb@redhat.com>
parents:
1636
diff
changeset
|
206 |
75e8a7f920c7
* vc.el (vc-do-command): Set the default directory of the *vc*
Jim Blandy <jimb@redhat.com>
parents:
1636
diff
changeset
|
207 ;; This is so that command arguments typed in the *vc* buffer will |
75e8a7f920c7
* vc.el (vc-do-command): Set the default directory of the *vc*
Jim Blandy <jimb@redhat.com>
parents:
1636
diff
changeset
|
208 ;; have reasonable defaults. |
75e8a7f920c7
* vc.el (vc-do-command): Set the default directory of the *vc*
Jim Blandy <jimb@redhat.com>
parents:
1636
diff
changeset
|
209 (setq default-directory (file-name-directory file)) |
75e8a7f920c7
* vc.el (vc-do-command): Set the default directory of the *vc*
Jim Blandy <jimb@redhat.com>
parents:
1636
diff
changeset
|
210 |
904 | 211 (mapcar |
212 (function (lambda (s) (and s (setq squeezed (append squeezed (list s)))))) | |
213 flags) | |
214 (if vc-file | |
215 (setq squeezed (append squeezed (list vc-file)))) | |
3959
103a29fa86b7
(vc-path): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3956
diff
changeset
|
216 (let ((default-directory (file-name-directory (or file "./"))) |
103a29fa86b7
(vc-path): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3956
diff
changeset
|
217 (exec-path (if vc-path (append exec-path vc-path) exec-path))) |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
218 (setq status (apply 'call-process command nil t nil squeezed))) |
904 | 219 (goto-char (point-max)) |
4770
987685f55edd
(vc-do-command): Remove debugging output. Use (forward-line -1) instead
Brian Fox <bfox@gnu.org>
parents:
4725
diff
changeset
|
220 (forward-line -1) |
904 | 221 (if (or (not (integerp status)) (< okstatus status)) |
222 (progn | |
223 (pop-to-buffer "*vc*") | |
224 (goto-char (point-min)) | |
4362
2c0ac46d5d5b
(vc-shrink-to-fit): Deleted. All callers changed to use
Richard M. Stallman <rms@gnu.org>
parents:
4281
diff
changeset
|
225 (shrink-window-if-larger-than-buffer) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
226 (error "Running %s...FAILED (%s)" command |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
227 (if (integerp status) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
228 (format "status %d" status) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
229 status)) |
904 | 230 ) |
231 (if vc-command-messages | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
232 (message "Running %s...OK" command)) |
904 | 233 ) |
234 (set-buffer obuf) | |
235 status) | |
236 ) | |
237 | |
1635
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
238 ;;; Save a bit of the text around POSN in the current buffer, to help |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
239 ;;; us find the corresponding position again later. This works even |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
240 ;;; if all markers are destroyed or corrupted. |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
241 (defun vc-position-context (posn) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
242 (list posn |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
243 (buffer-size) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
244 (buffer-substring posn |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
245 (min (point-max) (+ posn 100))))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
246 |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
247 ;;; Return the position of CONTEXT in the current buffer, or nil if we |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
248 ;;; couldn't find it. |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
249 (defun vc-find-position-by-context (context) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
250 (let ((context-string (nth 2 context))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
251 (if (equal "" context-string) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
252 (point-max) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
253 (save-excursion |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
254 (let ((diff (- (nth 1 context) (buffer-size)))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
255 (if (< diff 0) (setq diff (- diff))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
256 (goto-char (nth 0 context)) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
257 (if (or (search-forward context-string nil t) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
258 ;; Can't use search-backward since the match may continue |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
259 ;; after point. |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
260 (progn (goto-char (- (point) diff (length context-string))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
261 ;; goto-char doesn't signal an error at |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
262 ;; beginning of buffer like backward-char would |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
263 (search-forward context-string nil t))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
264 ;; to beginning of OSTRING |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
265 (- (point) (length context-string)))))))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
266 |
904 | 267 (defun vc-revert-buffer1 (&optional arg no-confirm) |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
268 ;; Most of this was shamelessly lifted from Sebastian Kremer's rcs.el mode. |
1635
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
269 ;; Revert buffer, try to keep point and mark where user expects them in spite |
904 | 270 ;; of changes because of expanded version-control key words. |
271 ;; This is quite important since otherwise typeahead won't work as expected. | |
272 (interactive "P") | |
273 (widen) | |
1635
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
274 (let ((point-context (vc-position-context (point))) |
2041
ccb75415543a
(vc-revert-buffer1): Use mark-marker; don't alter mark-active.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
275 ;; Use mark-marker to avoid confusion in transient-mark-mode. |
ccb75415543a
(vc-revert-buffer1): Use mark-marker; don't alter mark-active.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
276 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer)) |
ccb75415543a
(vc-revert-buffer1): Use mark-marker; don't alter mark-active.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
277 (vc-position-context (mark-marker)))) |
2554
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
278 ;; Make the right thing happen in transient-mark-mode. |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
279 (mark-active nil) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
280 ;; We may want to reparse the compilation buffer after revert |
2554
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
281 (reparse (and (boundp 'compilation-error-list) ;compile loaded |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
282 (let ((curbuf (current-buffer))) |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
283 ;; Construct a list; each elt is nil or a buffer |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
284 ;; iff that buffer is a compilation output buffer |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
285 ;; that contains markers into the current buffer. |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
286 (save-excursion |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
287 (mapcar (function |
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
288 (lambda (buffer) |
2554
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
289 (set-buffer buffer) |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
290 (let ((errors (or |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
291 compilation-old-error-list |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
292 compilation-error-list)) |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
293 (buffer-error-marked-p nil)) |
2774
ea8a7ab72d14
(vc-revert-buffer1): Don't assume that compilation-error-list
Richard M. Stallman <rms@gnu.org>
parents:
2769
diff
changeset
|
294 (while (and (consp errors) |
2554
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
295 (not buffer-error-marked-p)) |
2617
e2e5dfa162b4
(vc-revert-buffer1): Fix format of compilation-error-list.
Richard M. Stallman <rms@gnu.org>
parents:
2612
diff
changeset
|
296 (and (markerp (cdr (car errors))) |
2604
3a56b8caf6c9
(vc-revert-buffer1): Ignore non-marker elts of compilation-error-list.
Roland McGrath <roland@gnu.org>
parents:
2580
diff
changeset
|
297 (eq buffer |
3a56b8caf6c9
(vc-revert-buffer1): Ignore non-marker elts of compilation-error-list.
Roland McGrath <roland@gnu.org>
parents:
2580
diff
changeset
|
298 (marker-buffer |
2617
e2e5dfa162b4
(vc-revert-buffer1): Fix format of compilation-error-list.
Richard M. Stallman <rms@gnu.org>
parents:
2612
diff
changeset
|
299 (cdr (car errors)))) |
2604
3a56b8caf6c9
(vc-revert-buffer1): Ignore non-marker elts of compilation-error-list.
Roland McGrath <roland@gnu.org>
parents:
2580
diff
changeset
|
300 (setq buffer-error-marked-p t)) |
2554
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
301 (setq errors (cdr errors))) |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
302 (if buffer-error-marked-p buffer)))) |
2554
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
303 (buffer-list))))))) |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
304 |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
305 ;; the actual revisit |
904 | 306 (revert-buffer arg no-confirm) |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
307 |
2554
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
308 ;; Reparse affected compilation buffers. |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
309 (while reparse |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
310 (if (car reparse) |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
311 (save-excursion |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
312 (set-buffer (car reparse)) |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
313 (let ((compilation-last-buffer (current-buffer)) ;select buffer |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
314 ;; Record the position in the compilation buffer of |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
315 ;; the last error next-error went to. |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
316 (error-pos (marker-position |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
317 (car (car-safe compilation-error-list))))) |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
318 ;; Reparse the error messages as far as they were parsed before. |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
319 (compile-reinitialize-errors '(4) compilation-parsing-end) |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
320 ;; Move the pointer up to find the error we were at before |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
321 ;; reparsing. Now next-error should properly go to the next one. |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
322 (while (and compilation-error-list |
2558
78a9cebdb22c
(vc-revert-buffer1): Typo fix in last change.
Roland McGrath <roland@gnu.org>
parents:
2555
diff
changeset
|
323 (/= error-pos (car (car compilation-error-list)))) |
2554
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
324 (setq compilation-error-list (cdr compilation-error-list)))))) |
5686672705bf
(vc-revert-buffer1): Completely rewrote compilation reparsing code.
Roland McGrath <roland@gnu.org>
parents:
2493
diff
changeset
|
325 (setq reparse (cdr reparse))) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
326 |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
327 ;; Restore point and mark |
1635
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
328 (let ((new-point (vc-find-position-by-context point-context))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
329 (if new-point (goto-char new-point))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
330 (if mark-context |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
331 (let ((new-mark (vc-find-position-by-context mark-context))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
332 (if new-mark (set-mark new-mark)))))) |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
333 |
904 | 334 |
5338
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
335 (defun vc-buffer-sync (&optional not-urgent) |
904 | 336 ;; Make sure the current buffer and its working file are in sync |
5338
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
337 ;; NOT-URGENT means it is ok to continue if the user says not to save. |
5201
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
338 (if (buffer-modified-p) |
5338
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
339 (if (or vc-suppress-confirm |
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
340 (y-or-n-p (format "Buffer %s modified; save it? " (buffer-name)))) |
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
341 (save-buffer) |
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
342 (if not-urgent |
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
343 nil |
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
344 (error "Aborted"))))) |
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
345 |
904 | 346 |
5212
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
347 (defun vc-workfile-unchanged-p (file &optional want-differences-if-changed) |
904 | 348 ;; Has the given workfile changed since last checkout? |
349 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time)) | |
350 (lastmod (nth 5 (file-attributes file)))) | |
5212
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
351 (or (equal checkout-time lastmod) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
352 (and (or (not checkout-time) want-differences-if-changed) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
353 (let ((unchanged (zerop (vc-backend-diff file nil nil |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
354 (not want-differences-if-changed))))) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
355 ;; 0 stands for an unknown time; it can't match any mod time. |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
356 (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0)) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
357 unchanged))))) |
904 | 358 |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
359 (defun vc-next-action-on-file (file verbose &optional comment) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
360 ;;; If comment is specified, it will be used as an admin or checkin comment. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
361 (let (owner version (vc-file (vc-name file))) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
362 (cond |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
363 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
364 ;; if there is no master file corresponding, create one |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
365 ((not vc-file) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
366 (vc-register verbose comment) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
367 (if vc-initial-comment |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
368 (setq vc-log-after-operation-hook |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
369 'vc-checkout-writable-buffer-hook) |
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
370 (vc-checkout-writable-buffer file))) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
371 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
372 ;; if there is no lock on the file, assert one and get it |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
373 ((not (setq owner (vc-locking-user file))) |
5201
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
374 (if (and vc-checkout-carefully |
5212
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
375 (not (vc-workfile-unchanged-p file t))) |
5201
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
376 (if (save-window-excursion |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
377 (pop-to-buffer "*vc*") |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
378 (goto-char (point-min)) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
379 (insert-string (format "Changes to %s since last lock:\n\n" |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
380 file)) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
381 (not (beep)) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
382 (yes-or-no-p |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
383 (concat "File has unlocked changes, " |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
384 "claim lock retaining changes? "))) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
385 (progn (vc-backend-steal file) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
386 (vc-mode-line file)) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
387 (if (not (yes-or-no-p "Revert to checked-in version, instead? ")) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
388 (error "Checkout aborted.") |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
389 (vc-revert-buffer1 t t) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
390 (vc-checkout-writable-buffer file)) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
391 ) |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
392 (vc-checkout-writable-buffer file))) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
393 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
394 ;; a checked-out version exists, but the user may not own the lock |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
395 ((not (string-equal owner (user-login-name))) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
396 (if comment |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
397 (error "Sorry, you can't steal the lock on %s this way" file)) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
398 (vc-steal-lock |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
399 file |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
400 (and verbose (read-string "Version to steal: ")) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
401 owner)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
402 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
403 ;; OK, user owns the lock on the file |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
404 (t |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
405 (find-file file) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
406 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
407 ;; give luser a chance to save before checking in. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
408 (vc-buffer-sync) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
409 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
410 ;; Revert if file is unchanged and buffer is too. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
411 ;; If buffer is modified, that means the user just said no |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
412 ;; to saving it; in that case, don't revert, |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
413 ;; because the user might intend to save |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
414 ;; after finishing the log entry. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
415 (if (and (vc-workfile-unchanged-p file) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
416 (not (buffer-modified-p))) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
417 (progn |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
418 (vc-backend-revert file) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
419 ;; DO NOT revert the file without asking the user! |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
420 (vc-resynch-window file t nil)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
421 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
422 ;; user may want to set nonstandard parameters |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
423 (if verbose |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
424 (setq version (read-string "New version level: "))) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
425 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
426 ;; OK, let's do the checkin |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
427 (vc-checkin file version comment) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
428 ))))) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
429 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
430 (defun vc-next-action-dired (file rev comment) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
431 ;; We've accepted a log comment, now do a vc-next-action using it on all |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
432 ;; marked files. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
433 (set-buffer vc-parent-buffer) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
434 (dired-map-over-marks |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
435 (save-window-excursion |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
436 (let ((file (dired-get-filename))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
437 (message "Processing %s..." file) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
438 (vc-next-action-on-file file nil comment) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
439 (message "Processing %s...done" file))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
440 nil t) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
441 ) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
442 |
927 | 443 ;; Here's the major entry point. |
904 | 444 |
927 | 445 ;;;###autoload |
904 | 446 (defun vc-next-action (verbose) |
447 "Do the next logical checkin or checkout operation on the current file. | |
448 If the file is not already registered, this registers it for version | |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
449 control and then retrieves a writable, locked copy for editing. |
904 | 450 If the file is registered and not locked by anyone, this checks out |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
451 a writable and locked file ready for editing. |
904 | 452 If the file is checked out and locked by the calling user, this |
453 first checks to see if the file has changed since checkout. If not, | |
454 it performs a revert. | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
455 If the file has been changed, this pops up a buffer for entry |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
456 of a log message; when the message has been entered, it checks in the |
904 | 457 resulting changes along with the log message as change commentary. If |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
458 the variable `vc-keep-workfiles' is non-nil (which is its default), a |
904 | 459 read-only copy of the changed file is left in place afterwards. |
460 If the file is registered and locked by someone else, you are given | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
461 the option to steal the lock. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
462 If you call this from within a VC dired buffer with no files marked, |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
463 it will operate on the file in the current line. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
464 If you call this from within a VC dired buffer, and one or more |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
465 files are marked, it will accept a log message and then operate on |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
466 each one. The log message will be used as a comment for any register |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
467 or checkin operations, but ignored when doing checkouts. Attempted |
5201
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
468 lock steals will raise an error. |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
469 |
b27badfb4040
(vc-buffer-sync): Signal error if user says no.
Richard M. Stallman <rms@gnu.org>
parents:
5015
diff
changeset
|
470 For checkin, a prefix argument lets you specify the version number to use." |
904 | 471 (interactive "P") |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
472 (catch 'nogo |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
473 (if vc-dired-mode |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
474 (let ((files (dired-get-marked-files))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
475 (if (= (length files) 1) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
476 (find-file-other-window (dired-get-filename)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
477 (vc-start-entry nil nil nil |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
478 "Enter a change comment for the marked files." |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
479 'vc-next-action-dired) |
4817
4c49473fbfd4
(vc-next-action) Fix (throw ... ) invocation to work with 19; this
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
4791
diff
changeset
|
480 (throw 'nogo nil)))) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
481 (while vc-parent-buffer |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
482 (pop-to-buffer vc-parent-buffer)) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
483 (if buffer-file-name |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
484 (vc-next-action-on-file buffer-file-name verbose) |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
485 (vc-registration-error nil)))) |
904 | 486 |
487 ;;; These functions help the vc-next-action entry point | |
488 | |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
489 (defun vc-checkout-writable-buffer (&optional file) |
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
490 "Retrieve a writable copy of the latest version of the current buffer's file." |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
491 (vc-checkout (or file (buffer-file-name)) t) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
492 ) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
493 |
927 | 494 ;;;###autoload |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
495 (defun vc-register (&optional override comment) |
904 | 496 "Register the current file into your version-control system." |
497 (interactive "P") | |
498 (if (vc-name buffer-file-name) | |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
499 (error "This file is already registered")) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
500 ;; Watch out for new buffers of size 0: the corresponding file |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
501 ;; does not exist yet, even though buffer-modified-p is nil. |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
502 (if (and (not (buffer-modified-p)) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
503 (zerop (buffer-size)) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
504 (not (file-exists-p buffer-file-name))) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
505 (set-buffer-modified-p t)) |
904 | 506 (vc-buffer-sync) |
507 (vc-admin | |
508 buffer-file-name | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
509 (and override |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
510 (read-string |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
511 (format "Initial version level for %s: " buffer-file-name)))) |
904 | 512 ) |
513 | |
1478
429e23e87072
(vc-resynch-window): New arg NOQUERY. Pass it to vc-revert-buffer1.
Richard M. Stallman <rms@gnu.org>
parents:
1352
diff
changeset
|
514 (defun vc-resynch-window (file &optional keep noquery) |
904 | 515 ;; If the given file is in the current buffer, |
516 ;; either revert on it so we see expanded keyworks, | |
517 ;; or unvisit it (depending on vc-keep-workfiles) | |
1478
429e23e87072
(vc-resynch-window): New arg NOQUERY. Pass it to vc-revert-buffer1.
Richard M. Stallman <rms@gnu.org>
parents:
1352
diff
changeset
|
518 ;; NOQUERY if non-nil inhibits confirmation for reverting. |
429e23e87072
(vc-resynch-window): New arg NOQUERY. Pass it to vc-revert-buffer1.
Richard M. Stallman <rms@gnu.org>
parents:
1352
diff
changeset
|
519 ;; NOQUERY should be t *only* if it is known the only difference |
429e23e87072
(vc-resynch-window): New arg NOQUERY. Pass it to vc-revert-buffer1.
Richard M. Stallman <rms@gnu.org>
parents:
1352
diff
changeset
|
520 ;; between the buffer and the file is due to RCS rather than user editing! |
904 | 521 (and (string= buffer-file-name file) |
522 (if keep | |
523 (progn | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1674
diff
changeset
|
524 (vc-revert-buffer1 t noquery) |
904 | 525 (vc-mode-line buffer-file-name)) |
526 (progn | |
527 (delete-window) | |
528 (kill-buffer (current-buffer)))))) | |
529 | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
530 (defun vc-start-entry (file rev comment msg action) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
531 ;; Accept a comment for an operation on FILE revision REV. If COMMENT |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
532 ;; is nil, pop up a VC-log buffer, emit MSG, and set the |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
533 ;; action on close to ACTION; otherwise, do action immediately. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
534 ;; Remember the file's buffer in parent-buffer (current one if no file). |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
535 (let ((parent (if file (find-file-noselect file) (current-buffer)))) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
536 (if comment |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
537 (set-buffer (get-buffer-create "*VC-log*")) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
538 (pop-to-buffer (get-buffer-create "*VC-log*"))) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
539 (set (make-local-variable 'vc-parent-buffer) parent) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
540 (set (make-local-variable 'vc-parent-buffer-name) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
541 (concat " from " (buffer-name vc-parent-buffer))) |
4000
45b5a7ac812f
* vc.el (vc-start-entry): Don't call file-name-nondirectory on
Jim Blandy <jimb@redhat.com>
parents:
3988
diff
changeset
|
542 (vc-mode-line (or file " (no file)")) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
543 (vc-log-mode) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
544 (setq vc-log-operation action) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
545 (setq vc-log-file file) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
546 (setq vc-log-version rev) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
547 (if comment |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
548 (progn |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
549 (erase-buffer) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
550 (if (eq comment t) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
551 (vc-finish-logentry t) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
552 (insert comment) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
553 (vc-finish-logentry nil))) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
554 (message "%s Type C-c C-c when done." msg)))) |
904 | 555 |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
556 (defun vc-admin (file rev &optional comment) |
1478
429e23e87072
(vc-resynch-window): New arg NOQUERY. Pass it to vc-revert-buffer1.
Richard M. Stallman <rms@gnu.org>
parents:
1352
diff
changeset
|
557 "Check a file into your version-control system. |
904 | 558 FILE is the unmodified name of the file. REV should be the base version |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
559 level to check it in under. COMMENT, if specified, is the checkin comment." |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
560 (vc-start-entry file rev |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
561 (or comment (not vc-initial-comment)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
562 "Enter initial comment." 'vc-backend-admin)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
563 |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
564 (defun vc-checkout (file &optional writable) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
565 "Retrieve a copy of the latest version of the given file." |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
566 ;; If ftp is on this system and the name matches the ange-ftp format |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
567 ;; for a remote file, the user is trying something that won't work. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
568 (if (and (string-match "^/[^/:]+:" file) (vc-find-binary "ftp")) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
569 (error "Sorry, you can't check out files over FTP")) |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
570 (vc-backend-checkout file writable) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
571 (if (string-equal file buffer-file-name) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
572 (vc-resynch-window file t t)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
573 ) |
904 | 574 |
575 (defun vc-steal-lock (file rev &optional owner) | |
576 "Steal the lock on the current workfile." | |
577 (interactive) | |
578 (if (not owner) | |
579 (setq owner (vc-locking-user file))) | |
3227
b2e2fcc4fb24
(vc-steal-lock, vc-insert-headers): Fix question whitespace.
Richard M. Stallman <rms@gnu.org>
parents:
2968
diff
changeset
|
580 (if (not (y-or-n-p (format "Take the lock on %s:%s from %s? " file rev owner))) |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
581 (error "Steal cancelled")) |
1343
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
582 (pop-to-buffer (get-buffer-create "*VC-mail*")) |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
583 (setq default-directory (expand-file-name "~/")) |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
584 (auto-save-mode auto-save-default) |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
585 (mail-mode) |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
586 (erase-buffer) |
2087 | 587 (mail-setup owner (format "%s:%s" file rev) nil nil nil |
1343
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
588 (list (list 'vc-finish-steal file rev))) |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
589 (goto-char (point-max)) |
904 | 590 (insert |
1343
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
591 (format "I stole the lock on %s:%s, " file rev) |
904 | 592 (current-time-string) |
1343
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
593 ".\n") |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
594 (message "Please explain why you stole the lock. Type C-c C-c when done.")) |
904 | 595 |
1343
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
596 ;; This is called when the notification has been sent. |
904 | 597 (defun vc-finish-steal (file version) |
598 (vc-backend-steal file version) | |
1478
429e23e87072
(vc-resynch-window): New arg NOQUERY. Pass it to vc-revert-buffer1.
Richard M. Stallman <rms@gnu.org>
parents:
1352
diff
changeset
|
599 (vc-resynch-window file t t)) |
904 | 600 |
601 (defun vc-checkin (file &optional rev comment) | |
602 "Check in the file specified by FILE. | |
603 The optional argument REV may be a string specifying the new version level | |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
604 \(if nil increment the current level). The file is either retained with write |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
605 permissions zeroed, or deleted (according to the value of `vc-keep-workfiles'). |
904 | 606 COMMENT is a comment string; if omitted, a buffer is |
607 popped up to accept a comment." | |
6581
3a0db3b2366c
(vc-checkin): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6563
diff
changeset
|
608 (setq vc-log-after-operation-hook 'vc-checkin-hook) |
3a0db3b2366c
(vc-checkin): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6563
diff
changeset
|
609 (vc-start-entry file rev comment |
3a0db3b2366c
(vc-checkin): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6563
diff
changeset
|
610 "Enter a change comment." 'vc-backend-checkin)) |
904 | 611 |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
612 ;;; Here is a checkin hook that may prove useful to sites using the |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
613 ;;; ChangeLog facility supported by Emacs. |
4155
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
614 (defun vc-comment-to-change-log (&optional whoami file-name) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
615 "Enter last VC comment into change log file for current buffer's file. |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
616 Optional arg (interactive prefix) non-nil means prompt for user name and site. |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
617 Second arg is file name of change log. \ |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
618 If nil, uses `change-log-default-name'." |
4158
469c093061bf
(vc-comment-to-change-log): Copy interactive spec from
Roland McGrath <roland@gnu.org>
parents:
4156
diff
changeset
|
619 (interactive (if current-prefix-arg |
469c093061bf
(vc-comment-to-change-log): Copy interactive spec from
Roland McGrath <roland@gnu.org>
parents:
4156
diff
changeset
|
620 (list current-prefix-arg |
469c093061bf
(vc-comment-to-change-log): Copy interactive spec from
Roland McGrath <roland@gnu.org>
parents:
4156
diff
changeset
|
621 (prompt-for-change-log-name)))) |
5871
49029e28ed2c
(vc-comment-to-change-log): Load add-log before binding
Karl Heuer <kwzh@gnu.org>
parents:
5732
diff
changeset
|
622 ;; Make sure the defvar for add-log-current-defun-function has been executed |
49029e28ed2c
(vc-comment-to-change-log): Load add-log before binding
Karl Heuer <kwzh@gnu.org>
parents:
5732
diff
changeset
|
623 ;; before binding it. |
49029e28ed2c
(vc-comment-to-change-log): Load add-log before binding
Karl Heuer <kwzh@gnu.org>
parents:
5732
diff
changeset
|
624 (require 'add-log) |
4155
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
625 (let (;; Extract the comment first so we get any error before doing anything. |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
626 (comment (ring-ref vc-comment-ring 0)) |
4158
469c093061bf
(vc-comment-to-change-log): Copy interactive spec from
Roland McGrath <roland@gnu.org>
parents:
4156
diff
changeset
|
627 ;; Don't let add-change-log-entry insert a defun name. |
4155
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
628 (add-log-current-defun-function 'ignore) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
629 end) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
630 ;; Call add-log to do half the work. |
4158
469c093061bf
(vc-comment-to-change-log): Copy interactive spec from
Roland McGrath <roland@gnu.org>
parents:
4156
diff
changeset
|
631 (add-change-log-entry whoami file-name t t) |
4155
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
632 ;; Insert the VC comment, leaving point before it. |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
633 (setq end (save-excursion (insert comment) (point-marker))) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
634 (if (looking-at "\\s *\\s(") |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
635 ;; It starts with an open-paren, as in "(foo): Frobbed." |
4158
469c093061bf
(vc-comment-to-change-log): Copy interactive spec from
Roland McGrath <roland@gnu.org>
parents:
4156
diff
changeset
|
636 ;; So remove the ": " add-log inserted. |
4155
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
637 (delete-char -2)) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
638 ;; Canonicalize the white space between the file name and comment. |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
639 (just-one-space) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
640 ;; Indent rest of the text the same way add-log indented the first line. |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
641 (let ((indentation (current-indentation))) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
642 (save-excursion |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
643 (while (< (point) end) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
644 (forward-line 1) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
645 (indent-to indentation)) |
4156
0000c3af1836
(vc-comment-to-change-log): Canonicalize following whitespace after
Roland McGrath <roland@gnu.org>
parents:
4155
diff
changeset
|
646 (setq end (point)))) |
4155
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
647 ;; Fill the inserted text, preserving open-parens at bol. |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
648 (let ((paragraph-separate (concat paragraph-separate "\\|^\\s *\\s(")) |
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
649 (paragraph-start (concat paragraph-start "\\|^\\s *\\s("))) |
4158
469c093061bf
(vc-comment-to-change-log): Copy interactive spec from
Roland McGrath <roland@gnu.org>
parents:
4156
diff
changeset
|
650 (beginning-of-line) |
4156
0000c3af1836
(vc-comment-to-change-log): Canonicalize following whitespace after
Roland McGrath <roland@gnu.org>
parents:
4155
diff
changeset
|
651 (fill-region (point) end)) |
0000c3af1836
(vc-comment-to-change-log): Canonicalize following whitespace after
Roland McGrath <roland@gnu.org>
parents:
4155
diff
changeset
|
652 ;; Canonicalize the white space at the end of the entry so it is |
0000c3af1836
(vc-comment-to-change-log): Canonicalize following whitespace after
Roland McGrath <roland@gnu.org>
parents:
4155
diff
changeset
|
653 ;; separated from the next entry by a single blank line. |
0000c3af1836
(vc-comment-to-change-log): Canonicalize following whitespace after
Roland McGrath <roland@gnu.org>
parents:
4155
diff
changeset
|
654 (skip-syntax-forward " " end) |
0000c3af1836
(vc-comment-to-change-log): Canonicalize following whitespace after
Roland McGrath <roland@gnu.org>
parents:
4155
diff
changeset
|
655 (delete-char (- (skip-syntax-backward " "))) |
0000c3af1836
(vc-comment-to-change-log): Canonicalize following whitespace after
Roland McGrath <roland@gnu.org>
parents:
4155
diff
changeset
|
656 (or (eobp) (looking-at "\n\n") |
0000c3af1836
(vc-comment-to-change-log): Canonicalize following whitespace after
Roland McGrath <roland@gnu.org>
parents:
4155
diff
changeset
|
657 (insert "\n")))) |
4155
9f0a271fa24f
(vc-comment-to-change-log): Complete rewrite. Do not use
Roland McGrath <roland@gnu.org>
parents:
4000
diff
changeset
|
658 |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
659 |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
660 (defun vc-finish-logentry (&optional nocomment) |
904 | 661 "Complete the operation implied by the current log entry." |
662 (interactive) | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
663 ;; Check and record the comment, if any. |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
664 (if (not nocomment) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
665 (progn |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
666 (goto-char (point-max)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
667 (if (not (bolp)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
668 (newline)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
669 ;; Comment too long? |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
670 (vc-backend-logentry-check vc-log-file) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
671 ;; Record the comment in the comment ring |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
672 (if (null vc-comment-ring) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
673 (setq vc-comment-ring (make-ring vc-maximum-comment-ring-size))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
674 (ring-insert vc-comment-ring (buffer-string)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
675 )) |
5428
e66b058ec9f6
(vc-finish-logentry): Sync the buffer in case the user modified it while
Paul Eggert <eggert@twinsun.com>
parents:
5338
diff
changeset
|
676 ;; Sync parent buffer in case the user modified it while editing the comment. |
e66b058ec9f6
(vc-finish-logentry): Sync the buffer in case the user modified it while
Paul Eggert <eggert@twinsun.com>
parents:
5338
diff
changeset
|
677 (save-excursion |
e66b058ec9f6
(vc-finish-logentry): Sync the buffer in case the user modified it while
Paul Eggert <eggert@twinsun.com>
parents:
5338
diff
changeset
|
678 (set-buffer vc-parent-buffer) |
e66b058ec9f6
(vc-finish-logentry): Sync the buffer in case the user modified it while
Paul Eggert <eggert@twinsun.com>
parents:
5338
diff
changeset
|
679 (vc-buffer-sync)) |
904 | 680 ;; OK, do it to it |
681 (if vc-log-operation | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
682 (save-excursion |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
683 (funcall vc-log-operation |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
684 vc-log-file |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
685 vc-log-version |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
686 (buffer-string))) |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
687 (error "No log operation is pending")) |
904 | 688 ;; Return to "parent" buffer of this checkin and remove checkin window |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
689 (pop-to-buffer vc-parent-buffer) |
4817
4c49473fbfd4
(vc-next-action) Fix (throw ... ) invocation to work with 19; this
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
4791
diff
changeset
|
690 (let ((logbuf (get-buffer "*VC-log*"))) |
4c49473fbfd4
(vc-next-action) Fix (throw ... ) invocation to work with 19; this
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
4791
diff
changeset
|
691 (delete-windows-on logbuf) |
4c49473fbfd4
(vc-next-action) Fix (throw ... ) invocation to work with 19; this
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
4791
diff
changeset
|
692 (kill-buffer logbuf)) |
904 | 693 ;; Now make sure we see the expanded headers |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
694 (if buffer-file-name |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
695 (vc-resynch-window buffer-file-name vc-keep-workfiles t)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
696 (run-hooks vc-log-after-operation-hook)) |
904 | 697 |
698 ;; Code for access to the comment ring | |
699 | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
700 (defun vc-previous-comment (arg) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
701 "Cycle backwards through comment history." |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
702 (interactive "*p") |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
703 (let ((len (ring-length vc-comment-ring))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
704 (cond ((<= len 0) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
705 (message "Empty comment ring") |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
706 (ding)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
707 (t |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
708 (erase-buffer) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
709 ;; Initialize the index on the first use of this command |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
710 ;; so that the first M-p gets index 0, and the first M-n gets |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
711 ;; index -1. |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
712 (if (null vc-comment-ring-index) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
713 (setq vc-comment-ring-index |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
714 (if (> arg 0) -1 |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
715 (if (< arg 0) 1 0)))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
716 (setq vc-comment-ring-index |
4509
aeef9d07f78d
(vc-previous-comment): Use `mod', not `ring-mod'.
Paul Eggert <eggert@twinsun.com>
parents:
4480
diff
changeset
|
717 (mod (+ vc-comment-ring-index arg) len)) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
718 (message "%d" (1+ vc-comment-ring-index)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
719 (insert (ring-ref vc-comment-ring vc-comment-ring-index)))))) |
904 | 720 |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
721 (defun vc-next-comment (arg) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
722 "Cycle forwards through comment history." |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
723 (interactive "*p") |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
724 (vc-previous-comment (- arg))) |
904 | 725 |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
726 (defun vc-comment-search-reverse (str) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
727 "Searches backwards through comment history for substring match." |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
728 (interactive "sComment substring: ") |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
729 (if (string= str "") |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
730 (setq str vc-last-comment-match) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
731 (setq vc-last-comment-match str)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
732 (if (null vc-comment-ring-index) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
733 (setq vc-comment-ring-index -1)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
734 (let ((str (regexp-quote str)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
735 (len (ring-length vc-comment-ring)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
736 (n (1+ vc-comment-ring-index))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
737 (while (and (< n len) (not (string-match str (ring-ref vc-comment-ring n)))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
738 (setq n (+ n 1))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
739 (cond ((< n len) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
740 (vc-previous-comment (- n vc-comment-ring-index))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
741 (t (error "Not found"))))) |
904 | 742 |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
743 (defun vc-comment-search-forward (str) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
744 "Searches forwards through comment history for substring match." |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
745 (interactive "sComment substring: ") |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
746 (if (string= str "") |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
747 (setq str vc-last-comment-match) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
748 (setq vc-last-comment-match str)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
749 (if (null vc-comment-ring-index) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
750 (setq vc-comment-ring-index 0)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
751 (let ((str (regexp-quote str)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
752 (len (ring-length vc-comment-ring)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
753 (n vc-comment-ring-index)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
754 (while (and (>= n 0) (not (string-match str (ring-ref vc-comment-ring n)))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
755 (setq n (- n 1))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
756 (cond ((>= n 0) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
757 (vc-next-comment (- n vc-comment-ring-index))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
758 (t (error "Not found"))))) |
904 | 759 |
760 ;; Additional entry points for examining version histories | |
761 | |
927 | 762 ;;;###autoload |
5338
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
763 (defun vc-diff (historic &optional not-urgent) |
2667
62869d996485
(vc-backend-diff): Use diff-switches, not vc-diff-options.
Richard M. Stallman <rms@gnu.org>
parents:
2666
diff
changeset
|
764 "Display diffs between file versions. |
62869d996485
(vc-backend-diff): Use diff-switches, not vc-diff-options.
Richard M. Stallman <rms@gnu.org>
parents:
2666
diff
changeset
|
765 Normally this compares the current file and buffer with the most recent |
62869d996485
(vc-backend-diff): Use diff-switches, not vc-diff-options.
Richard M. Stallman <rms@gnu.org>
parents:
2666
diff
changeset
|
766 checked in version of that file. This uses no arguments. |
62869d996485
(vc-backend-diff): Use diff-switches, not vc-diff-options.
Richard M. Stallman <rms@gnu.org>
parents:
2666
diff
changeset
|
767 With a prefix argument, it reads the file name to use |
62869d996485
(vc-backend-diff): Use diff-switches, not vc-diff-options.
Richard M. Stallman <rms@gnu.org>
parents:
2666
diff
changeset
|
768 and two version designators specifying which versions to compare." |
904 | 769 (interactive "P") |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
770 (if vc-dired-mode |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
771 (set-buffer (find-file-noselect (dired-get-filename)))) |
2419
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
772 (while vc-parent-buffer |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
773 (pop-to-buffer vc-parent-buffer)) |
904 | 774 (if historic |
775 (call-interactively 'vc-version-diff) | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
776 (if (or (null buffer-file-name) (null (vc-name buffer-file-name))) |
4480
208145c77950
* vc.el (vc-diff, vc-directory-18): Add missing paren to end of
Jim Blandy <jimb@redhat.com>
parents:
4362
diff
changeset
|
777 (error |
208145c77950
* vc.el (vc-diff, vc-directory-18): Add missing paren to end of
Jim Blandy <jimb@redhat.com>
parents:
4362
diff
changeset
|
778 "There is no version-control master associated with this buffer")) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
779 (let ((file buffer-file-name) |
904 | 780 unchanged) |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
781 (or (and file (vc-name file)) |
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
782 (vc-registration-error file)) |
5338
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
783 (vc-buffer-sync not-urgent) |
904 | 784 (setq unchanged (vc-workfile-unchanged-p buffer-file-name)) |
785 (if unchanged | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
786 (message "No changes to %s since latest version." file) |
5212
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
787 (vc-backend-diff file) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
788 ;; Ideally, we'd like at this point to parse the diff so that |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
789 ;; the buffer effectively goes into compilation mode and we |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
790 ;; can visit the old and new change locations via next-error. |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
791 ;; Unfortunately, this is just too painful to do. The basic |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
792 ;; problem is that the `old' file doesn't exist to be |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
793 ;; visited. This plays hell with numerous assumptions in |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
794 ;; the diff.el and compile.el machinery. |
904 | 795 (pop-to-buffer "*vc*") |
3895
0710180efd8b
(vc-diff): If `diff' gives empty output, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
3804
diff
changeset
|
796 (pop-to-buffer "*vc*") |
0710180efd8b
(vc-diff): If `diff' gives empty output, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
3804
diff
changeset
|
797 (if (= 0 (buffer-size)) |
0710180efd8b
(vc-diff): If `diff' gives empty output, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
3804
diff
changeset
|
798 (progn |
0710180efd8b
(vc-diff): If `diff' gives empty output, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
3804
diff
changeset
|
799 (setq unchanged t) |
0710180efd8b
(vc-diff): If `diff' gives empty output, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
3804
diff
changeset
|
800 (message "No changes to %s since latest version." file)) |
4362
2c0ac46d5d5b
(vc-shrink-to-fit): Deleted. All callers changed to use
Richard M. Stallman <rms@gnu.org>
parents:
4281
diff
changeset
|
801 (goto-char (point-min)) |
4480
208145c77950
* vc.el (vc-diff, vc-directory-18): Add missing paren to end of
Jim Blandy <jimb@redhat.com>
parents:
4362
diff
changeset
|
802 (shrink-window-if-larger-than-buffer))) |
208145c77950
* vc.el (vc-diff, vc-directory-18): Add missing paren to end of
Jim Blandy <jimb@redhat.com>
parents:
4362
diff
changeset
|
803 (not unchanged)))) |
904 | 804 |
805 (defun vc-version-diff (file rel1 rel2) | |
806 "For FILE, report diffs between two stored versions REL1 and REL2 of it. | |
807 If FILE is a directory, generate diffs between versions for all registered | |
808 files in or below it." | |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
809 (interactive "FFile or directory to diff: \nsOlder version: \nsNewer version: ") |
904 | 810 (if (string-equal rel1 "") (setq rel1 nil)) |
811 (if (string-equal rel2 "") (setq rel2 nil)) | |
812 (if (file-directory-p file) | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
813 (let ((camefrom (current-buffer))) |
904 | 814 (set-buffer (get-buffer-create "*vc-status*")) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
815 (set (make-local-variable 'vc-parent-buffer) camefrom) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
816 (set (make-local-variable 'vc-parent-buffer-name) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
817 (concat " from " (buffer-name camefrom))) |
904 | 818 (erase-buffer) |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
819 (insert "Diffs between " |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
820 (or rel1 "last version checked in") |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
821 " and " |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
822 (or rel2 "current workfile(s)") |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
823 ":\n\n") |
904 | 824 (set-buffer (get-buffer-create "*vc*")) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
825 (cd file) |
904 | 826 (vc-file-tree-walk |
827 (function (lambda (f) | |
2219
a729b16f7427
(vc-version-diff): Use (message ...), not (message (format ...)).
Paul Eggert <eggert@twinsun.com>
parents:
2212
diff
changeset
|
828 (message "Looking at %s" f) |
904 | 829 (and |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
830 (not (file-directory-p f)) |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
831 (vc-registered f) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
832 (vc-backend-diff f rel1 rel2) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
833 (append-to-buffer "*vc-status*" (point-min) (point-max))) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
834 ))) |
904 | 835 (pop-to-buffer "*vc-status*") |
836 (insert "\nEnd of diffs.\n") | |
837 (goto-char (point-min)) | |
838 (set-buffer-modified-p nil) | |
839 ) | |
2769
209f745babd1
(vc-version-diff): Don't move point in current buffer.
Richard M. Stallman <rms@gnu.org>
parents:
2760
diff
changeset
|
840 (if (zerop (vc-backend-diff file rel1 rel2)) |
209f745babd1
(vc-version-diff): Don't move point in current buffer.
Richard M. Stallman <rms@gnu.org>
parents:
2760
diff
changeset
|
841 (message "No changes to %s between %s and %s." file rel1 rel2) |
2786
286057aa81c7
* vc.el (vc-version-diff): Match parens.
Jim Blandy <jimb@redhat.com>
parents:
2774
diff
changeset
|
842 (pop-to-buffer "*vc*")))) |
904 | 843 |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
844 ;;;###autoload |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
845 (defun vc-version-other-window (rev) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
846 "Visit version REV of the current buffer in another window. |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
847 If the current buffer is named `F', the version is named `F.~REV~'. |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
848 If `F.~REV~' already exists, it is used instead of being re-created." |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
849 (interactive "sVersion to visit (default is latest version): ") |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
850 (if vc-dired-mode |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
851 (set-buffer (find-file-noselect (dired-get-filename)))) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
852 (while vc-parent-buffer |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
853 (pop-to-buffer vc-parent-buffer)) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
854 (if (and buffer-file-name (vc-name buffer-file-name)) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
855 (let* ((version (if (string-equal rev "") |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
856 (vc-latest-version buffer-file-name) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
857 rev)) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
858 (filename (concat buffer-file-name ".~" version "~"))) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
859 (or (file-exists-p filename) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
860 (vc-backend-checkout buffer-file-name nil version filename)) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
861 (find-file-other-window filename)) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
862 (vc-registration-error buffer-file-name))) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
863 |
904 | 864 ;; Header-insertion code |
865 | |
927 | 866 ;;;###autoload |
904 | 867 (defun vc-insert-headers () |
868 "Insert headers in a file for use with your version-control system. | |
869 Headers desired are inserted at the start of the buffer, and are pulled from | |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
870 the variable `vc-header-alist'." |
904 | 871 (interactive) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
872 (if vc-dired-mode |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
873 (find-file-other-window (dired-get-filename))) |
2419
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
874 (while vc-parent-buffer |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
875 (pop-to-buffer vc-parent-buffer)) |
904 | 876 (save-excursion |
877 (save-restriction | |
878 (widen) | |
879 (if (or (not (vc-check-headers)) | |
3227
b2e2fcc4fb24
(vc-steal-lock, vc-insert-headers): Fix question whitespace.
Richard M. Stallman <rms@gnu.org>
parents:
2968
diff
changeset
|
880 (y-or-n-p "Version headers already exist. Insert another set? ")) |
904 | 881 (progn |
882 (let* ((delims (cdr (assq major-mode vc-comment-alist))) | |
883 (comment-start-vc (or (car delims) comment-start "#")) | |
884 (comment-end-vc (or (car (cdr delims)) comment-end "")) | |
885 (hdstrings (cdr (assoc (vc-backend-deduce (buffer-file-name)) vc-header-alist)))) | |
886 (mapcar (function (lambda (s) | |
887 (insert comment-start-vc "\t" s "\t" | |
888 comment-end-vc "\n"))) | |
889 hdstrings) | |
890 (if vc-static-header-alist | |
891 (mapcar (function (lambda (f) | |
892 (if (string-match (car f) buffer-file-name) | |
893 (insert (format (cdr f) (car hdstrings)))))) | |
894 vc-static-header-alist)) | |
895 ) | |
896 ))))) | |
897 | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
898 ;; The VC directory submode. Coopt Dired for this. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
899 ;; All VC commands get mapped into logical equivalents. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
900 |
2664
334f3eeb459d
(vc-dired-prefix-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
2617
diff
changeset
|
901 (defvar vc-dired-prefix-map (make-sparse-keymap)) |
334f3eeb459d
(vc-dired-prefix-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
2617
diff
changeset
|
902 (define-key vc-dired-prefix-map "\C-xv" vc-prefix-map) |
334f3eeb459d
(vc-dired-prefix-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
2617
diff
changeset
|
903 |
2665
531099c93082
(minor-mode-map-alist): Don't use it if it's void.
Richard M. Stallman <rms@gnu.org>
parents:
2664
diff
changeset
|
904 (or (not (boundp 'minor-mode-map-alist)) |
531099c93082
(minor-mode-map-alist): Don't use it if it's void.
Richard M. Stallman <rms@gnu.org>
parents:
2664
diff
changeset
|
905 (assq 'vc-dired-mode minor-mode-map-alist) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
906 (setq minor-mode-map-alist |
2760
1c7595e3089b
(Setting minor-mode-map-alist):
Richard M. Stallman <rms@gnu.org>
parents:
2750
diff
changeset
|
907 (cons (cons 'vc-dired-mode vc-dired-prefix-map) |
2664
334f3eeb459d
(vc-dired-prefix-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
2617
diff
changeset
|
908 minor-mode-map-alist))) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
909 |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
910 (defun vc-dired-mode () |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
911 "The augmented Dired minor mode used in VC directory buffers. |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
912 All Dired commands operate normally. Users currently locking listed files |
2664
334f3eeb459d
(vc-dired-prefix-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
2617
diff
changeset
|
913 are listed in place of the file's owner and group. |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
914 Keystrokes bound to VC commands will execute as though they had been called |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
915 on a buffer attached to the file named in the current Dired buffer line." |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
916 (setq vc-dired-mode t) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
917 (setq vc-mode " under VC")) |
904 | 918 |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
919 (defun vc-dired-reformat-line (x) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
920 ;; Hack a directory-listing line, plugging in locking-user info in |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
921 ;; place of the user and group info. Should have the beneficial |
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
922 ;; side-effect of shortening the listing line. Each call starts with |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
923 ;; point immediately following the dired mark area on the line to be |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
924 ;; hacked. |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
925 ;; |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
926 ;; Simplest possible one: |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
927 ;; (insert (concat x "\t"))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
928 ;; |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
929 ;; This code, like dired, assumes UNIX -l format. |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
930 (forward-word 1) ;; skip over any extra field due to -ibs options |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
931 (if x (setq x (concat "(" x ")"))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
932 (if (re-search-forward "\\([0-9]+ \\).................\\( .*\\)" nil 0) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
933 (let ((rep (substring (concat x " ") 0 9))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
934 (replace-match (concat "\\1" rep "\\2") t))) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
935 ) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
936 |
2691
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
937 ;;; Note in Emacs 18 the following defun gets overridden |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
938 ;;; with the symbol 'vc-directory-18. See below. |
927 | 939 ;;;###autoload |
904 | 940 (defun vc-directory (verbose) |
941 "Show version-control status of all files under the current directory." | |
942 (interactive "P") | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
943 (let (nonempty |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
944 (dl (length default-directory)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
945 (filelist nil) (userlist nil) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
946 dired-buf |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
947 dired-buf-mod-count) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
948 (vc-file-tree-walk |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
949 (function (lambda (f) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
950 (if (vc-registered f) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
951 (let ((user (vc-locking-user f))) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
952 (and (or verbose user) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
953 (setq filelist (cons (substring f dl) filelist)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
954 (setq userlist (cons user userlist)))))))) |
904 | 955 (save-excursion |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
956 ;; This uses a semi-documented feature of dired; giving a switch |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
957 ;; argument forces the buffer to refresh each time. |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
958 (dired |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
959 (cons default-directory (nreverse filelist)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
960 dired-listing-switches) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
961 (setq dired-buf (current-buffer)) |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
962 (setq nonempty (not (zerop (buffer-size))))) |
904 | 963 (if nonempty |
964 (progn | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
965 (pop-to-buffer dired-buf) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
966 (vc-dired-mode) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
967 (goto-char (point-min)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
968 (setq buffer-read-only nil) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
969 (forward-line 1) ;; Skip header line |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
970 (mapcar |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
971 (function |
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
972 (lambda (x) |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
973 (forward-char 2) ;; skip dired's mark area |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
974 (vc-dired-reformat-line x) |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
975 (forward-line 1))) ;; go to next line |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
976 (nreverse userlist)) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
977 (setq buffer-read-only t) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
978 (goto-char (point-min)) |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
979 ) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
980 (message "No files are currently %s under %s" |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
981 (if verbose "registered" "locked") default-directory)) |
904 | 982 )) |
983 | |
2691
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
984 ;; Emacs 18 version |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
985 (defun vc-directory-18 (verbose) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
986 "Show version-control status of all files under the current directory." |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
987 (interactive "P") |
2692
fc1de7b24bc4
(vc-directory-18): cd to the directory in question before the file tree walk.
Richard M. Stallman <rms@gnu.org>
parents:
2691
diff
changeset
|
988 (let (nonempty (dir default-directory)) |
2691
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
989 (save-excursion |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
990 (set-buffer (get-buffer-create "*vc-status*")) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
991 (erase-buffer) |
2692
fc1de7b24bc4
(vc-directory-18): cd to the directory in question before the file tree walk.
Richard M. Stallman <rms@gnu.org>
parents:
2691
diff
changeset
|
992 (cd dir) |
2691
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
993 (vc-file-tree-walk |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
994 (function (lambda (f) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
995 (if (vc-registered f) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
996 (let ((user (vc-locking-user f))) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
997 (if (or user verbose) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
998 (insert (format |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
999 "%s %s\n" |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1000 (concat user) f)))))))) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1001 (setq nonempty (not (zerop (buffer-size))))) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1002 (if nonempty |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1003 (progn |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1004 (pop-to-buffer "*vc-status*" t) |
4362
2c0ac46d5d5b
(vc-shrink-to-fit): Deleted. All callers changed to use
Richard M. Stallman <rms@gnu.org>
parents:
4281
diff
changeset
|
1005 (goto-char (point-min)) |
2c0ac46d5d5b
(vc-shrink-to-fit): Deleted. All callers changed to use
Richard M. Stallman <rms@gnu.org>
parents:
4281
diff
changeset
|
1006 (shrink-window-if-larger-than-buffer))) |
2691
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1007 (message "No files are currently %s under %s" |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1008 (if verbose "registered" "locked") default-directory)) |
4480
208145c77950
* vc.el (vc-diff, vc-directory-18): Add missing paren to end of
Jim Blandy <jimb@redhat.com>
parents:
4362
diff
changeset
|
1009 ) |
2691
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1010 |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1011 (or (boundp 'minor-mode-map-alist) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1012 (fset 'vc-directory 'vc-directory-18)) |
be85636d8b6e
(vc-directory-18): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2667
diff
changeset
|
1013 |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
1014 ; Emacs 18 also lacks these. |
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
1015 (or (boundp 'compilation-old-error-list) |
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
1016 (setq compilation-old-error-list nil)) |
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
1017 |
904 | 1018 ;; Named-configuration support for SCCS |
1019 | |
1020 (defun vc-add-triple (name file rev) | |
1021 (save-excursion | |
1022 (find-file (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file)) | |
1023 (goto-char (point-max)) | |
1024 (insert name "\t:\t" file "\t" rev "\n") | |
1025 (basic-save-buffer) | |
1026 (kill-buffer (current-buffer)) | |
1027 )) | |
1028 | |
1029 (defun vc-record-rename (file newname) | |
1030 (save-excursion | |
1031 (find-file (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file)) | |
1032 (goto-char (point-min)) | |
5263
f12548cb6e0b
(vc-record-rename): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
5212
diff
changeset
|
1033 ;; (replace-regexp (concat ":" (regexp-quote file) "$") (concat ":" newname)) |
f12548cb6e0b
(vc-record-rename): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
5212
diff
changeset
|
1034 (while (re-search-forward (concat ":" (regexp-quote file) "$") nil t) |
f12548cb6e0b
(vc-record-rename): Don't use replace-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
5212
diff
changeset
|
1035 (replace-match (concat ":" newname) nil nil)) |
904 | 1036 (basic-save-buffer) |
1037 (kill-buffer (current-buffer)) | |
1038 )) | |
1039 | |
1040 (defun vc-lookup-triple (file name) | |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1041 ;; Return the numeric version corresponding to a named snapshot of file |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1042 ;; If name is nil or a version number string it's just passed through |
5989
0b529dfd88c3
(vc-lookup-triple): Yield nil, not "", if NAME is nil.
Paul Eggert <eggert@twinsun.com>
parents:
5871
diff
changeset
|
1043 (cond ((null name) name) |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1044 ((let ((firstchar (aref name 0))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1045 (and (>= firstchar ?0) (<= firstchar ?9))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1046 name) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1047 (t |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1048 (car (vc-master-info |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1049 (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1050 (list (concat name "\t:\t" file "\t\\(.+\\)")))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1051 ))) |
904 | 1052 |
1053 ;; Named-configuration entry points | |
1054 | |
4656
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1055 (defun vc-locked-example () |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1056 ;; Return an example of why the current directory is not ready to be snapshot |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1057 ;; or nil if no such example exists. |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1058 (catch 'vc-locked-example |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1059 (vc-file-tree-walk |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1060 (function (lambda (f) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1061 (if (and (vc-registered f) (vc-locking-user f)) |
4656
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1062 (throw 'vc-locked-example f))))) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1063 nil)) |
904 | 1064 |
927 | 1065 ;;;###autoload |
904 | 1066 (defun vc-create-snapshot (name) |
1067 "Make a snapshot called NAME. | |
1068 The snapshot is made from all registered files at or below the current | |
1069 directory. For each file, the version level of its latest | |
1070 version becomes part of the named configuration." | |
1071 (interactive "sNew snapshot name: ") | |
4656
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1072 (let ((locked (vc-locked-example))) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1073 (if locked |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1074 (error "File %s is locked" locked) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1075 (vc-file-tree-walk |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1076 (function (lambda (f) (and |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1077 (vc-name f) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1078 (vc-backend-assign-name f name))))) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1079 ))) |
904 | 1080 |
927 | 1081 ;;;###autoload |
904 | 1082 (defun vc-retrieve-snapshot (name) |
1083 "Retrieve the snapshot called NAME. | |
1084 This function fails if any files are locked at or below the current directory | |
1085 Otherwise, all registered files are checked out (unlocked) at their version | |
1086 levels in the snapshot." | |
1087 (interactive "sSnapshot name to retrieve: ") | |
4656
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1088 (let ((locked (vc-locked-example))) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1089 (if locked |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1090 (error "File %s is locked" locked) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1091 (vc-file-tree-walk |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1092 (function (lambda (f) (and |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1093 (vc-name f) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1094 (vc-error-occurred |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1095 (vc-backend-checkout f nil name)))))) |
29bd5f3d0059
(vc-locked-example): Renamed from vc-quiescent-p. Now yields example of
Paul Eggert <eggert@twinsun.com>
parents:
4509
diff
changeset
|
1096 ))) |
904 | 1097 |
1098 ;; Miscellaneous other entry points | |
1099 | |
927 | 1100 ;;;###autoload |
904 | 1101 (defun vc-print-log () |
1102 "List the change log of the current buffer in a window." | |
1103 (interactive) | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1104 (if vc-dired-mode |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1105 (set-buffer (find-file-noselect (dired-get-filename)))) |
2419
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
1106 (while vc-parent-buffer |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
1107 (pop-to-buffer vc-parent-buffer)) |
904 | 1108 (if (and buffer-file-name (vc-name buffer-file-name)) |
1109 (progn | |
1110 (vc-backend-print-log buffer-file-name) | |
1111 (pop-to-buffer (get-buffer-create "*vc*")) | |
4770
987685f55edd
(vc-do-command): Remove debugging output. Use (forward-line -1) instead
Brian Fox <bfox@gnu.org>
parents:
4725
diff
changeset
|
1112 (while (looking-at "=*\n") |
987685f55edd
(vc-do-command): Remove debugging output. Use (forward-line -1) instead
Brian Fox <bfox@gnu.org>
parents:
4725
diff
changeset
|
1113 (delete-char (- (match-end 0) (match-beginning 0))) |
987685f55edd
(vc-do-command): Remove debugging output. Use (forward-line -1) instead
Brian Fox <bfox@gnu.org>
parents:
4725
diff
changeset
|
1114 (forward-line -1)) |
904 | 1115 (goto-char (point-min)) |
4770
987685f55edd
(vc-do-command): Remove debugging output. Use (forward-line -1) instead
Brian Fox <bfox@gnu.org>
parents:
4725
diff
changeset
|
1116 (if (looking-at "[\b\t\n\v\f\r ]+") |
987685f55edd
(vc-do-command): Remove debugging output. Use (forward-line -1) instead
Brian Fox <bfox@gnu.org>
parents:
4725
diff
changeset
|
1117 (delete-char (- (match-end 0) (match-beginning 0)))) |
4362
2c0ac46d5d5b
(vc-shrink-to-fit): Deleted. All callers changed to use
Richard M. Stallman <rms@gnu.org>
parents:
4281
diff
changeset
|
1118 (shrink-window-if-larger-than-buffer) |
904 | 1119 ) |
2745
adf91f018312
(vc-diff): Report an error if the buffer isn't registered.
Richard M. Stallman <rms@gnu.org>
parents:
2706
diff
changeset
|
1120 (vc-registration-error buffer-file-name) |
904 | 1121 ) |
1122 ) | |
1123 | |
927 | 1124 ;;;###autoload |
904 | 1125 (defun vc-revert-buffer () |
952 | 1126 "Revert the current buffer's file back to the latest checked-in version. |
1127 This asks for confirmation if the buffer contents are not identical | |
1128 to that version." | |
904 | 1129 (interactive) |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1130 (if vc-dired-mode |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1131 (find-file-other-window (dired-get-filename))) |
2419
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
1132 (while vc-parent-buffer |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
1133 (pop-to-buffer vc-parent-buffer)) |
904 | 1134 (let ((file buffer-file-name) |
5338
b3a78854c791
(vc-buffer-sync, vc-diff): New arg NOT-URGENT.
Richard M. Stallman <rms@gnu.org>
parents:
5263
diff
changeset
|
1135 (obuf (current-buffer)) (changed (vc-diff nil t))) |
952 | 1136 (if (and changed (or vc-suppress-confirm |
1137 (not (yes-or-no-p "Discard changes? ")))) | |
904 | 1138 (progn |
1139 (delete-window) | |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
1140 (error "Revert cancelled")) |
904 | 1141 (set-buffer obuf)) |
1142 (if changed | |
1143 (delete-window)) | |
1144 (vc-backend-revert file) | |
1478
429e23e87072
(vc-resynch-window): New arg NOQUERY. Pass it to vc-revert-buffer1.
Richard M. Stallman <rms@gnu.org>
parents:
1352
diff
changeset
|
1145 (vc-resynch-window file t t) |
904 | 1146 ) |
1147 ) | |
1148 | |
927 | 1149 ;;;###autoload |
904 | 1150 (defun vc-cancel-version (norevert) |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1151 "Get rid of most recently checked in version of this file. |
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1152 A prefix argument means do not revert the buffer afterwards." |
904 | 1153 (interactive "P") |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1154 (if vc-dired-mode |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1155 (find-file-other-window (dired-get-filename))) |
2419
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
1156 (while vc-parent-buffer |
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
1157 (pop-to-buffer vc-parent-buffer)) |
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
1158 (let* ((target (concat (vc-latest-version (buffer-file-name)))) |
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
1159 (yours (concat (vc-your-latest-version (buffer-file-name)))) |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1160 (prompt (if (string-equal yours target) |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
1161 "Remove your version %s from master? " |
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
1162 "Version %s was not your change. Remove it anyway? "))) |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1163 (if (null (yes-or-no-p (format prompt target))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1164 nil |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1165 (vc-backend-uncheck (buffer-file-name) target) |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1166 (if (or norevert |
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1167 (not (yes-or-no-p "Revert buffer to most recent remaining version? "))) |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1168 (vc-mode-line (buffer-file-name)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1169 (vc-checkout (buffer-file-name) nil))) |
2419
77a67b7a1cce
(vc-next-action, vc-peint-log, vc-diff, vc-revert-buffer) improved
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2402
diff
changeset
|
1170 )) |
904 | 1171 |
1172 (defun vc-rename-file (old new) | |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1173 "Rename file OLD to NEW, and rename its master file likewise." |
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1174 (interactive "fVC rename file: \nFRename to: ") |
904 | 1175 (let ((oldbuf (get-file-buffer old))) |
4991
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1176 (if (and oldbuf (buffer-modified-p oldbuf)) |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
1177 (error "Please save files before moving them")) |
904 | 1178 (if (get-file-buffer new) |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
1179 (error "Already editing new file name")) |
4991
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1180 (if (file-exists-p new) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1181 (error "New file already exists")) |
904 | 1182 (let ((oldmaster (vc-name old))) |
1183 (if oldmaster | |
4991
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1184 (progn |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1185 (if (vc-locking-user old) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1186 (error "Please check in files before moving them")) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1187 (if (or (file-symlink-p oldmaster) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1188 ;; This had FILE, I changed it to OLD. -- rms. |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1189 (file-symlink-p (vc-backend-subdirectory-name old))) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1190 (error "This is not a safe thing to do in the presence of symbolic links")) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1191 (rename-file |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1192 oldmaster |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1193 (let ((backend (vc-backend-deduce old)) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1194 (newdir (or (file-name-directory new) "")) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1195 (newbase (file-name-nondirectory new))) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1196 (catch 'found |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1197 (mapcar |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1198 (function |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1199 (lambda (s) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1200 (if (eq backend (cdr s)) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1201 (let* ((newmaster (format (car s) newdir newbase)) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1202 (newmasterdir (file-name-directory newmaster))) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1203 (if (or (not newmasterdir) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1204 (file-directory-p newmasterdir)) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1205 (throw 'found newmaster)))))) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1206 vc-master-templates) |
9da6c6c24ddd
(vc-rename-file): Don't overwrite an existing file.
Richard M. Stallman <rms@gnu.org>
parents:
4854
diff
changeset
|
1207 (error "New file lacks a version control directory")))))) |
904 | 1208 (if (or (not oldmaster) (file-exists-p old)) |
1209 (rename-file old new))) | |
1210 ; ?? Renaming a file might change its contents due to keyword expansion. | |
1211 ; We should really check out a new copy if the old copy was precisely equal | |
1212 ; to some checked in version. However, testing for this is tricky.... | |
1213 (if oldbuf | |
1214 (save-excursion | |
1215 (set-buffer oldbuf) | |
1216 (set-visited-file-name new) | |
1217 (set-buffer-modified-p nil)))) | |
1243
de79e26e67cf
(vc-rename-file): Use OLD, not FILE which is unbound.
Richard M. Stallman <rms@gnu.org>
parents:
1232
diff
changeset
|
1218 ;; This had FILE, I changed it to OLD. -- rms. |
de79e26e67cf
(vc-rename-file): Use OLD, not FILE which is unbound.
Richard M. Stallman <rms@gnu.org>
parents:
1232
diff
changeset
|
1219 (vc-backend-dispatch old |
904 | 1220 (vc-record-rename old new) |
1221 nil) | |
1222 ) | |
1223 | |
927 | 1224 ;;;###autoload |
1226
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
1225 (defun vc-update-change-log (&rest args) |
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
1226 "Find change log file and add entries from recent RCS logs. |
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
1227 The mark is left at the end of the text prepended to the change log. |
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
1228 With prefix arg of C-u, only find log entries for the current buffer's file. |
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
1229 With any numeric prefix arg, find log entries for all files currently visited. |
3939
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1230 Otherwise, find log entries for all registered files in the default directory. |
1226
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
1231 From a program, any arguments are passed to the `rcs2log' script." |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1232 (interactive |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1233 (cond ((consp current-prefix-arg) ;C-u |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1234 (list buffer-file-name)) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1235 (current-prefix-arg ;Numeric argument. |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1236 (let ((files nil) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1237 (buffers (buffer-list)) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1238 file) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1239 (while buffers |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1240 (setq file (buffer-file-name (car buffers))) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1241 (and file (vc-backend-deduce file) |
3939
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1242 (setq files (cons file files))) |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
1243 (setq buffers (cdr buffers))) |
3939
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1244 files)) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1245 (t |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1246 (let ((RCS (concat default-directory "RCS"))) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1247 (and (file-directory-p RCS) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1248 (mapcar (function |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1249 (lambda (f) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1250 (if (string-match "\\(.*\\),v$" f) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1251 (substring f 0 (match-end 1)) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1252 f))) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1253 (directory-files RCS nil "...\\|^[^.]\\|^.[^.]"))))))) |
3905
5669887e3692
(vc-update-change-log): Restore previous default-directory
Richard M. Stallman <rms@gnu.org>
parents:
3895
diff
changeset
|
1254 (let ((odefault default-directory)) |
5669887e3692
(vc-update-change-log): Restore previous default-directory
Richard M. Stallman <rms@gnu.org>
parents:
3895
diff
changeset
|
1255 (find-file-other-window (find-change-log)) |
5669887e3692
(vc-update-change-log): Restore previous default-directory
Richard M. Stallman <rms@gnu.org>
parents:
3895
diff
changeset
|
1256 (barf-if-buffer-read-only) |
5669887e3692
(vc-update-change-log): Restore previous default-directory
Richard M. Stallman <rms@gnu.org>
parents:
3895
diff
changeset
|
1257 (vc-buffer-sync) |
5669887e3692
(vc-update-change-log): Restore previous default-directory
Richard M. Stallman <rms@gnu.org>
parents:
3895
diff
changeset
|
1258 (undo-boundary) |
5669887e3692
(vc-update-change-log): Restore previous default-directory
Richard M. Stallman <rms@gnu.org>
parents:
3895
diff
changeset
|
1259 (goto-char (point-min)) |
5669887e3692
(vc-update-change-log): Restore previous default-directory
Richard M. Stallman <rms@gnu.org>
parents:
3895
diff
changeset
|
1260 (push-mark) |
5669887e3692
(vc-update-change-log): Restore previous default-directory
Richard M. Stallman <rms@gnu.org>
parents:
3895
diff
changeset
|
1261 (message "Computing change log entries...") |
3939
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1262 (message "Computing change log entries... %s" |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1263 (if (or (null args) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1264 (eq 0 (apply 'call-process "rcs2log" nil t nil |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1265 (mapcar (function |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1266 (lambda (f) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1267 (file-relative-name |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1268 (if (file-name-absolute-p f) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1269 f |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1270 (concat odefault f))))) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1271 args)))) |
1b954eb0f249
(vc-update-change-log): Ensure that file names inserted into a ChangeLog
Paul Eggert <eggert@twinsun.com>
parents:
3905
diff
changeset
|
1272 "done" "failed")))) |
904 | 1273 |
1274 ;; Functions for querying the master and lock files. | |
1275 | |
2612
f9f844a39a29
(vc-match-substring): Renamed from match-substring.
Richard M. Stallman <rms@gnu.org>
parents:
2604
diff
changeset
|
1276 (defun vc-match-substring (bn) |
904 | 1277 (buffer-substring (match-beginning bn) (match-end bn))) |
1278 | |
1279 (defun vc-parse-buffer (patterns &optional file properties) | |
1280 ;; Use PATTERNS to parse information out of the current buffer | |
1281 ;; by matching each regular expression in the list and returning \\1. | |
1282 ;; If a regexp has two tag brackets, assume the second is a date | |
1283 ;; field and we want the most recent entry matching the template. | |
1284 ;; If FILE and PROPERTIES are given, the latter must be a list of | |
1285 ;; properties of the same length as PATTERNS; each property is assigned | |
1286 ;; the corresponding value. | |
1287 (mapcar (function (lambda (p) | |
1288 (goto-char (point-min)) | |
1289 (if (string-match "\\\\(.*\\\\(" p) | |
1290 (let ((latest-date "") (latest-val)) | |
1291 (while (re-search-forward p nil t) | |
2612
f9f844a39a29
(vc-match-substring): Renamed from match-substring.
Richard M. Stallman <rms@gnu.org>
parents:
2604
diff
changeset
|
1292 (let ((date (vc-match-substring 2))) |
904 | 1293 (if (string< latest-date date) |
1294 (progn | |
1295 (setq latest-date date) | |
1296 (setq latest-val | |
2612
f9f844a39a29
(vc-match-substring): Renamed from match-substring.
Richard M. Stallman <rms@gnu.org>
parents:
2604
diff
changeset
|
1297 (vc-match-substring 1)))))) |
904 | 1298 latest-val)) |
1299 (prog1 | |
5732
d97df1629181
vc-parse-buffer: arrange for old properties to get cleared when their
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
5578
diff
changeset
|
1300 (let ((value nil)) |
d97df1629181
vc-parse-buffer: arrange for old properties to get cleared when their
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
5578
diff
changeset
|
1301 (if (re-search-forward p nil t) |
d97df1629181
vc-parse-buffer: arrange for old properties to get cleared when their
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
5578
diff
changeset
|
1302 (setq value (vc-match-substring 1))) |
d97df1629181
vc-parse-buffer: arrange for old properties to get cleared when their
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
5578
diff
changeset
|
1303 (if file |
d97df1629181
vc-parse-buffer: arrange for old properties to get cleared when their
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
5578
diff
changeset
|
1304 (vc-file-setprop file (car properties) value)) |
d97df1629181
vc-parse-buffer: arrange for old properties to get cleared when their
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
5578
diff
changeset
|
1305 value) |
904 | 1306 (setq properties (cdr properties))))) |
1307 patterns) | |
1308 ) | |
1309 | |
1310 (defun vc-master-info (file fields &optional rfile properties) | |
1311 ;; Search for information in a master file. | |
1312 (if (and file (file-exists-p file)) | |
1313 (save-excursion | |
1314 (let ((buf)) | |
1315 (setq buf (create-file-buffer file)) | |
1316 (set-buffer buf)) | |
1317 (erase-buffer) | |
1318 (insert-file-contents file nil) | |
1319 (set-buffer-modified-p nil) | |
1320 (auto-save-mode nil) | |
1321 (prog1 | |
1322 (vc-parse-buffer fields rfile properties) | |
1323 (kill-buffer (current-buffer))) | |
1324 ) | |
1325 (if rfile | |
1326 (mapcar | |
1327 (function (lambda (p) (vc-file-setprop rfile p nil))) | |
1328 properties)) | |
1329 ) | |
1330 ) | |
1331 | |
1332 (defun vc-log-info (command file patterns &optional properties) | |
1333 ;; Search for information in log program output | |
1334 (if (and file (file-exists-p file)) | |
1335 (save-excursion | |
1336 (let ((buf)) | |
1337 (setq buf (get-buffer-create "*vc*")) | |
1338 (set-buffer buf)) | |
1339 (apply 'vc-do-command 0 command file nil) | |
1340 (set-buffer-modified-p nil) | |
1341 (prog1 | |
1342 (vc-parse-buffer patterns file properties) | |
1343 (kill-buffer (current-buffer)) | |
1344 ) | |
1345 ) | |
1346 (if file | |
1347 (mapcar | |
1348 (function (lambda (p) (vc-file-setprop file p nil))) | |
1349 properties)) | |
1350 ) | |
1351 ) | |
1352 | |
1353 (defun vc-locking-user (file) | |
1354 "Return the name of the person currently holding a lock on FILE. | |
1355 Return nil if there is no such person." | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1356 (setq file (expand-file-name file)) ;; ??? Work around bug in 19.0.4 |
904 | 1357 (if (or (not vc-keep-workfiles) |
1358 (eq vc-mistrust-permissions 't) | |
1359 (and vc-mistrust-permissions | |
1360 (funcall vc-mistrust-permissions (vc-backend-subdirectory-name file)))) | |
1361 (vc-true-locking-user file) | |
1362 ;; This implementation assumes that any file which is under version | |
1363 ;; control and has -rw-r--r-- is locked by its owner. This is true | |
1364 ;; for both RCS and SCCS, which keep unlocked files at -r--r--r--. | |
1365 ;; We have to be careful not to exclude files with execute bits on; | |
5209
7fdef355cdc2
(vc-locking-user): Don't assume that the umask permits
Paul Eggert <eggert@twinsun.com>
parents:
5201
diff
changeset
|
1366 ;; scripts can be under version control too. Also, we must ignore |
7fdef355cdc2
(vc-locking-user): Don't assume that the umask permits
Paul Eggert <eggert@twinsun.com>
parents:
5201
diff
changeset
|
1367 ;; the group-read and other-read bits, since paranoid users turn them off. |
7fdef355cdc2
(vc-locking-user): Don't assume that the umask permits
Paul Eggert <eggert@twinsun.com>
parents:
5201
diff
changeset
|
1368 ;; This hack wins because calls to the very expensive vc-fetch-properties |
904 | 1369 ;; function only have to be made if (a) the file is locked by someone |
1370 ;; other than the current user, or (b) some untoward manipulation | |
2490
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1371 ;; behind vc's back has changed the owner or the `group' or `other' |
70d00ecacc0d
(vc-directory. vc-start-entry, vc-next-action, vc-next-action-on-file):
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2464
diff
changeset
|
1372 ;; write bits. |
904 | 1373 (let ((attributes (file-attributes file))) |
5209
7fdef355cdc2
(vc-locking-user): Don't assume that the umask permits
Paul Eggert <eggert@twinsun.com>
parents:
5201
diff
changeset
|
1374 (cond ((string-match ".r-..-..-." (nth 8 attributes)) |
904 | 1375 nil) |
1376 ((and (= (nth 2 attributes) (user-uid)) | |
5209
7fdef355cdc2
(vc-locking-user): Don't assume that the umask permits
Paul Eggert <eggert@twinsun.com>
parents:
5201
diff
changeset
|
1377 (string-match ".rw..-..-." (nth 8 attributes))) |
904 | 1378 (user-login-name)) |
1379 (t | |
1380 (vc-true-locking-user file)))))) | |
1381 | |
1382 (defun vc-true-locking-user (file) | |
1383 ;; The slow but reliable version | |
1384 (vc-fetch-properties file) | |
1385 (vc-file-getprop file 'vc-locking-user)) | |
1386 | |
1387 (defun vc-latest-version (file) | |
1388 ;; Return version level of the latest version of FILE | |
1389 (vc-fetch-properties file) | |
1390 (vc-file-getprop file 'vc-latest-version)) | |
1391 | |
1392 (defun vc-your-latest-version (file) | |
1393 ;; Return version level of the latest version of FILE checked in by you | |
1394 (vc-fetch-properties file) | |
1395 (vc-file-getprop file 'vc-your-latest-version)) | |
1396 | |
1397 ;; Collect back-end-dependent stuff here | |
1398 ;; | |
1399 ;; Everything eventually funnels through these functions. To implement | |
1400 ;; support for a new version-control system, add another branch to the | |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1401 ;; vc-backend-dispatch macro and fill it in in each call. The variable |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1402 ;; vc-master-templates in vc-hooks.el will also have to change. |
904 | 1403 |
1404 (defmacro vc-backend-dispatch (f s r) | |
1405 "Execute FORM1 or FORM2 depending on whether we're using SCCS or RCS." | |
1406 (list 'let (list (list 'type (list 'vc-backend-deduce f))) | |
1407 (list 'cond | |
1408 (list (list 'eq 'type (quote 'SCCS)) s) ;; SCCS | |
1409 (list (list 'eq 'type (quote 'RCS)) r) ;; RCS | |
1410 ))) | |
1411 | |
1412 (defun vc-lock-file (file) | |
1413 ;; Generate lock file name corresponding to FILE | |
1414 (let ((master (vc-name file))) | |
1415 (and | |
1416 master | |
1417 (string-match "\\(.*/\\)s\\.\\(.*\\)" master) | |
1418 (concat | |
1419 (substring master (match-beginning 1) (match-end 1)) | |
1420 "p." | |
1421 (substring master (match-beginning 2) (match-end 2)))))) | |
1422 | |
1423 | |
1424 (defun vc-fetch-properties (file) | |
1425 ;; Re-fetch all properties associated with the given file. | |
1426 ;; Currently these properties are: | |
1427 ;; vc-locking-user | |
1428 ;; vc-locked-version | |
1429 ;; vc-latest-version | |
1430 ;; vc-your-latest-version | |
1431 (vc-backend-dispatch | |
1432 file | |
1433 ;; SCCS | |
1434 (progn | |
1435 (vc-master-info (vc-lock-file file) | |
1436 (list | |
1437 "^[^ ]+ [^ ]+ \\([^ ]+\\)" | |
1438 "^\\([^ ]+\\)") | |
1439 file | |
1440 '(vc-locking-user vc-locked-version)) | |
1441 (vc-master-info (vc-name file) | |
1442 (list | |
1443 "^\001d D \\([^ ]+\\)" | |
1444 (concat "^\001d D \\([^ ]+\\) .* " | |
1445 (regexp-quote (user-login-name)) " ") | |
1446 ) | |
1447 file | |
1448 '(vc-latest-version vc-your-latest-version)) | |
1449 ) | |
1450 ;; RCS | |
1451 (vc-log-info "rlog" file | |
1452 (list | |
1453 "^locks: strict\n\t\\([^:]+\\)" | |
1454 "^locks: strict\n\t[^:]+: \\(.+\\)" | |
1455 "^revision[\t ]+\\([0-9.]+\\).*\ndate: \\([ /0-9:]+\\);" | |
1456 (concat | |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
1457 "^revision[\t ]+\\([0-9.]+\\)\n.*author: " |
904 | 1458 (regexp-quote (user-login-name)) |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
1459 ";")) |
904 | 1460 '(vc-locking-user vc-locked-version |
1461 vc-latest-version vc-your-latest-version)) | |
1462 )) | |
1463 | |
1464 (defun vc-backend-subdirectory-name (&optional file) | |
1465 ;; Where the master and lock files for the current directory are kept | |
1466 (symbol-name | |
1467 (or | |
1468 (and file (vc-backend-deduce file)) | |
1469 vc-default-back-end | |
1470 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS))))) | |
1471 | |
1472 (defun vc-backend-admin (file &optional rev comment) | |
1473 ;; Register a file into the version-control system | |
1474 ;; Automatically retrieves a read-only version of the file with | |
1475 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise | |
1476 ;; it deletes the workfile. | |
1477 (vc-file-clearprops file) | |
1478 (or vc-default-back-end | |
1479 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS))) | |
1480 (message "Registering %s..." file) | |
1481 (let ((backend | |
1482 (cond | |
1483 ((file-exists-p (vc-backend-subdirectory-name)) vc-default-back-end) | |
1484 ((file-exists-p "RCS") 'RCS) | |
1485 ((file-exists-p "SCCS") 'SCCS) | |
1486 (t vc-default-back-end)))) | |
1487 (cond ((eq backend 'SCCS) | |
1488 (vc-do-command 0 "admin" file ;; SCCS | |
1489 (and rev (concat "-r" rev)) | |
1490 "-fb" | |
1491 (concat "-i" file) | |
1492 (and comment (concat "-y" comment)) | |
1493 (format | |
1494 (car (rassq 'SCCS vc-master-templates)) | |
1495 (or (file-name-directory file) "") | |
1496 (file-name-nondirectory file))) | |
1497 (delete-file file) | |
1498 (if vc-keep-workfiles | |
1499 (vc-do-command 0 "get" file))) | |
1500 ((eq backend 'RCS) | |
1501 (vc-do-command 0 "ci" file ;; RCS | |
1502 (concat (if vc-keep-workfiles "-u" "-r") rev) | |
1503 (and comment (concat "-t-" comment)) | |
1504 file) | |
1505 ))) | |
1506 (message "Registering %s...done" file) | |
1507 ) | |
1508 | |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1509 (defun vc-backend-checkout (file &optional writable rev workfile) |
904 | 1510 ;; Retrieve a copy of a saved version into a workfile |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1511 (let ((filename (or workfile file))) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1512 (message "Checking out %s..." filename) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1513 (vc-backend-dispatch file |
904 | 1514 (vc-do-command 0 "get" file ;; SCCS |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1515 (if writable "-e") |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1516 (if workfile (concat "-G" workfile)) |
904 | 1517 (and rev (concat "-r" (vc-lookup-triple file rev)))) |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1518 (if workfile ;; RCS |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1519 ;; RCS doesn't let us check out into arbitrary file names directly. |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1520 ;; Use `co -p' and make stdout point to the correct file. |
4854
a964061ab350
(vc-backend-checkout): Do not set umask to value that does not allow
Paul Eggert <eggert@twinsun.com>
parents:
4817
diff
changeset
|
1521 (let ((vc-modes (logior (file-modes (vc-name file)) |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1522 (if writable 128 0))) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1523 (failed t)) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1524 (unwind-protect |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1525 (progn |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1526 (vc-do-command |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1527 0 "/bin/sh" file "-c" |
4854
a964061ab350
(vc-backend-checkout): Do not set umask to value that does not allow
Paul Eggert <eggert@twinsun.com>
parents:
4817
diff
changeset
|
1528 (format "umask %o; exec >\"$1\" || exit; shift; umask %o; exec co \"$@\"" |
a964061ab350
(vc-backend-checkout): Do not set umask to value that does not allow
Paul Eggert <eggert@twinsun.com>
parents:
4817
diff
changeset
|
1529 (logand 511 (lognot vc-modes)) |
a964061ab350
(vc-backend-checkout): Do not set umask to value that does not allow
Paul Eggert <eggert@twinsun.com>
parents:
4817
diff
changeset
|
1530 (logand 511 (lognot (default-file-modes)))) |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1531 "" ; dummy argument for shell's $0 |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1532 filename |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1533 (if writable "-l") |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1534 (concat "-p" rev)) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1535 (setq failed nil)) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1536 (and failed (file-exists-p filename) (delete-file filename)))) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1537 (vc-do-command 0 "co" file |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1538 (if writable "-l") |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1539 (and rev (concat "-r" rev)))) |
904 | 1540 ) |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1541 (or workfile |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1542 (vc-file-setprop file 'vc-checkout-time (nth 5 (file-attributes file)))) |
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1543 (message "Checking out %s...done" filename)) |
904 | 1544 ) |
1545 | |
1546 (defun vc-backend-logentry-check (file) | |
1547 (vc-backend-dispatch file | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
1548 (if (>= (buffer-size) 512) ;; SCCS |
904 | 1549 (progn |
1550 (goto-char 512) | |
1551 (error | |
3804
d7d674c99039
(vc-rename-file): Remove periods from error messages.
Richard M. Stallman <rms@gnu.org>
parents:
3671
diff
changeset
|
1552 "Log must be less than 512 characters; point is now at pos 512"))) |
904 | 1553 nil) |
1554 ) | |
1555 | |
1556 (defun vc-backend-checkin (file &optional rev comment) | |
1557 ;; Register changes to FILE as level REV with explanatory COMMENT. | |
1558 ;; Automatically retrieves a read-only version of the file with | |
1559 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise | |
1560 ;; it deletes the workfile. | |
1561 (message "Checking in %s..." file) | |
1337
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1562 (save-excursion |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1563 ;; Change buffers to get local value of vc-checkin-switches. |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1564 (set-buffer (or (get-file-buffer file) (current-buffer))) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1565 (vc-backend-dispatch file |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1566 (progn |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1567 (apply 'vc-do-command 0 "delta" file |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1568 (if rev (concat "-r" rev)) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1569 (concat "-y" comment) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1570 vc-checkin-switches) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1571 (if vc-keep-workfiles |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1572 (vc-do-command 0 "get" file)) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1573 ) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1574 (apply 'vc-do-command 0 "ci" file |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1575 (concat (if vc-keep-workfiles "-u" "-r") rev) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1576 (concat "-m" comment) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1577 vc-checkin-switches) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1578 )) |
904 | 1579 (vc-file-setprop file 'vc-locking-user nil) |
1580 (message "Checking in %s...done" file) | |
1581 ) | |
1582 | |
1583 (defun vc-backend-revert (file) | |
1584 ;; Revert file to latest checked-in version. | |
1585 (message "Reverting %s..." file) | |
1586 (vc-backend-dispatch | |
1587 file | |
1588 (progn ;; SCCS | |
1589 (vc-do-command 0 "unget" file nil) | |
1590 (vc-do-command 0 "get" file nil)) | |
4228
f1441ca7277e
> (vc-backend-revert): Use `co -f' instead of deleting the
Paul Eggert <eggert@twinsun.com>
parents:
4158
diff
changeset
|
1591 (vc-do-command 0 "co" file "-f" "-u")) ;; RCS. This deletes the work file. |
904 | 1592 (vc-file-setprop file 'vc-locking-user nil) |
1593 (message "Reverting %s...done" file) | |
1594 ) | |
1595 | |
1596 (defun vc-backend-steal (file &optional rev) | |
1597 ;; Steal the lock on the current workfile. Needs RCS 5.6.2 or later for -M. | |
1598 (message "Stealing lock on %s..." file) | |
4281
8407cf00af85
(vc-backend-steal): Pass arg omitted in last change.
Richard M. Stallman <rms@gnu.org>
parents:
4228
diff
changeset
|
1599 (vc-backend-dispatch file |
4228
f1441ca7277e
> (vc-backend-revert): Use `co -f' instead of deleting the
Paul Eggert <eggert@twinsun.com>
parents:
4158
diff
changeset
|
1600 (progn |
f1441ca7277e
> (vc-backend-revert): Use `co -f' instead of deleting the
Paul Eggert <eggert@twinsun.com>
parents:
4158
diff
changeset
|
1601 (vc-do-command 0 "unget" file "-n" (if rev (concat "-r" rev))) |
f1441ca7277e
> (vc-backend-revert): Use `co -f' instead of deleting the
Paul Eggert <eggert@twinsun.com>
parents:
4158
diff
changeset
|
1602 (vc-do-command 0 "get" file "-g" (if rev (concat "-r" rev))) |
f1441ca7277e
> (vc-backend-revert): Use `co -f' instead of deleting the
Paul Eggert <eggert@twinsun.com>
parents:
4158
diff
changeset
|
1603 ) |
4684
23b11c3b86b3
(vc-backend-steal): Fix typo when invoking the 'rcs' command
Paul Eggert <eggert@twinsun.com>
parents:
4656
diff
changeset
|
1604 (vc-do-command 0 "rcs" file "-M" (concat "-u" rev) (concat "-l" rev))) |
904 | 1605 (vc-file-setprop file 'vc-locking-user (user-login-name)) |
1606 (message "Stealing lock on %s...done" file) | |
1607 ) | |
1608 | |
1609 (defun vc-backend-uncheck (file target) | |
1610 ;; Undo the latest checkin. Note: this code will have to get a lot | |
1611 ;; smarter when we support multiple branches. | |
1612 (message "Removing last change from %s..." file) | |
1613 (vc-backend-dispatch file | |
1614 (vc-do-command 0 "rmdel" file (concat "-r" target)) | |
1615 (vc-do-command 0 "rcs" file (concat "-o" target)) | |
1616 ) | |
1617 (message "Removing last change from %s...done" file) | |
1618 ) | |
1619 | |
1620 (defun vc-backend-print-log (file) | |
1621 ;; Print change log associated with FILE to buffer *vc*. | |
1622 (vc-do-command 0 | |
1623 (vc-backend-dispatch file "prs" "rlog") | |
1624 file) | |
1625 ) | |
1626 | |
1627 (defun vc-backend-assign-name (file name) | |
1628 ;; Assign to a FILE's latest version a given NAME. | |
1629 (vc-backend-dispatch file | |
1630 (vc-add-triple name file (vc-latest-version file)) ;; SCCS | |
1631 (vc-do-command 0 "rcs" file (concat "-n" name ":")) ;; RCS | |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
1632 ) |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
1633 ) |
904 | 1634 |
5212
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1635 (defun vc-backend-diff (file &optional oldvers newvers cmp) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1636 ;; Get a difference report between two versions of FILE. |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1637 ;; Get only a brief comparison report if CMP, a difference report otherwise. |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1638 (if (eq (vc-backend-deduce file) 'SCCS) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1639 (setq oldvers (vc-lookup-triple file oldvers)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1640 (setq newvers (vc-lookup-triple file newvers))) |
5212
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1641 (let* ((command (or (vc-backend-dispatch file "vcdiff" "rcsdiff") |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1642 (vc-registration-error file))) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1643 (options (append (list (and cmp "--brief") |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1644 "-q" |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1645 (and oldvers (concat "-r" oldvers)) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1646 (and newvers (concat "-r" newvers))) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1647 (and (not cmp) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1648 (if (listp diff-switches) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1649 diff-switches |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1650 (list diff-switches))))) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1651 (status (apply 'vc-do-command 2 command file options))) |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1652 ;; Some RCS versions don't understand "--brief"; work around this. |
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1653 (if (eq status 2) |
7016
af3a2472ad48
(vc-backend-diff): Test of cmp was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
6581
diff
changeset
|
1654 (apply 'vc-do-command 1 command file (if cmp (cdr options) options)) |
5212
f8ba69b02832
(vc-workfile-unchanged-p): Add optional argument
Paul Eggert <eggert@twinsun.com>
parents:
5209
diff
changeset
|
1655 status))) |
904 | 1656 |
1657 (defun vc-check-headers () | |
1658 "Check if the current file has any headers in it." | |
1659 (interactive) | |
1660 (save-excursion | |
1661 (goto-char (point-min)) | |
1662 (vc-backend-dispatch buffer-file-name | |
1663 (re-search-forward "%[MIRLBSDHTEGUYFPQCZWA]%" nil t) ;; SCCS | |
1664 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t) ;; RCS | |
1665 ) | |
1666 )) | |
1667 | |
1668 ;; Back-end-dependent stuff ends here. | |
1669 | |
1670 ;; Set up key bindings for use while editing log messages | |
1671 | |
1672 (defun vc-log-mode () | |
1673 "Minor mode for driving version-control tools. | |
1674 These bindings are added to the global keymap when you enter this mode: | |
1675 \\[vc-next-action] perform next logical version-control operation on current file | |
1676 \\[vc-register] register current file | |
1677 \\[vc-toggle-read-only] like next-action, but won't register files | |
1678 \\[vc-insert-headers] insert version-control headers in current file | |
1679 \\[vc-print-log] display change history of current file | |
1680 \\[vc-revert-buffer] revert buffer to latest version | |
1681 \\[vc-cancel-version] undo latest checkin | |
1682 \\[vc-diff] show diffs between file versions | |
4725
126cf4bdfd35
(vc-version-other-window): New function.
Paul Eggert <eggert@twinsun.com>
parents:
4684
diff
changeset
|
1683 \\[vc-version-other-window] visit old version in another window |
904 | 1684 \\[vc-directory] show all files locked by any user in or below . |
1685 \\[vc-update-change-log] add change log entry from recent checkins | |
1686 | |
1687 While you are entering a change log message for a version, the following | |
1688 additional bindings will be in effect. | |
1689 | |
1690 \\[vc-finish-logentry] proceed with check in, ending log message entry | |
1691 | |
1692 Whenever you do a checkin, your log comment is added to a ring of | |
1693 saved comments. These can be recalled as follows: | |
1694 | |
1695 \\[vc-next-comment] replace region with next message in comment ring | |
1696 \\[vc-previous-comment] replace region with previous message in comment ring | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
1697 \\[vc-comment-search-reverse] search backward for regexp in the comment ring |
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
1698 \\[vc-comment-search-forward] search backward for regexp in the comment ring |
904 | 1699 |
1700 Entry to the change-log submode calls the value of text-mode-hook, then | |
1701 the value of vc-log-mode-hook. | |
1702 | |
1703 Global user options: | |
1704 vc-initial-comment If non-nil, require user to enter a change | |
1705 comment upon first checkin of the file. | |
1706 | |
1707 vc-keep-workfiles Non-nil value prevents workfiles from being | |
1708 deleted when changes are checked in | |
1709 | |
1710 vc-suppress-confirm Suppresses some confirmation prompts, | |
1711 notably for reversions. | |
1712 | |
2226
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
1713 vc-header-alist Which keywords to insert when adding headers |
904 | 1714 with \\[vc-insert-headers]. Defaults to |
1715 '(\"\%\W\%\") under SCCS, '(\"\$Id\$\") under RCS. | |
1716 | |
1717 vc-static-header-alist By default, version headers inserted in C files | |
1718 get stuffed in a static string area so that | |
1719 ident(RCS) or what(SCCS) can see them in the | |
1720 compiled object code. You can override this | |
1721 by setting this variable to nil, or change | |
1722 the header template by changing it. | |
1723 | |
1724 vc-command-messages if non-nil, display run messages from the | |
1725 actual version-control utilities (this is | |
1726 intended primarily for people hacking vc | |
1727 itself). | |
1728 " | |
1729 (interactive) | |
1730 (set-syntax-table text-mode-syntax-table) | |
1731 (use-local-map vc-log-entry-mode) | |
1732 (setq local-abbrev-table text-mode-abbrev-table) | |
1733 (setq major-mode 'vc-log-mode) | |
1734 (setq mode-name "VC-Log") | |
1735 (make-local-variable 'vc-log-file) | |
1736 (make-local-variable 'vc-log-version) | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
1737 (make-local-variable 'vc-comment-ring-index) |
904 | 1738 (set-buffer-modified-p nil) |
1739 (setq buffer-file-name nil) | |
1740 (run-hooks 'text-mode-hook 'vc-log-mode-hook) | |
1741 ) | |
1742 | |
1743 ;; Initialization code, to be done just once at load-time | |
1744 (if vc-log-entry-mode | |
1745 nil | |
1746 (setq vc-log-entry-mode (make-sparse-keymap)) | |
1747 (define-key vc-log-entry-mode "\M-n" 'vc-next-comment) | |
1748 (define-key vc-log-entry-mode "\M-p" 'vc-previous-comment) | |
2580
a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2558
diff
changeset
|
1749 (define-key vc-log-entry-mode "\M-r" 'vc-comment-search-reverse) |
904 | 1750 (define-key vc-log-entry-mode "\M-s" 'vc-comment-search-forward) |
1751 (define-key vc-log-entry-mode "\C-c\C-c" 'vc-finish-logentry) | |
1752 ) | |
1753 | |
1754 ;;; These things should probably be generally available | |
1755 | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1756 (defun vc-file-tree-walk (func &rest args) |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1757 "Walk recursively through default directory. |
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1758 Invoke FUNC f ARGS on each non-directory file f underneath it." |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1759 (vc-file-tree-walk-internal default-directory func args) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1760 (message "Traversing directory %s...done" default-directory)) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1761 |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1762 (defun vc-file-tree-walk-internal (file func args) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1763 (if (not (file-directory-p file)) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1764 (apply func file args) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1765 (message "Traversing directory %s..." file) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1766 (let ((dir (file-name-as-directory file))) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1767 (mapcar |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1768 (function |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1769 (lambda (f) (or |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1770 (string-equal f ".") |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1771 (string-equal f "..") |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1772 (let ((dirf (concat dir f))) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1773 (or |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1774 (file-symlink-p dirf) ;; Avoid possible loops |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1775 (vc-file-tree-walk-internal dirf func args)))))) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1776 (directory-files dir))))) |
904 | 1777 |
1778 (provide 'vc) | |
1779 | |
1780 ;;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE | |
1781 ;;; | |
1782 ;;; These may be useful to anyone who has to debug or extend the package. | |
1783 ;;; | |
1784 ;;; A fundamental problem in VC is that there are time windows between | |
1785 ;;; vc-next-action's computations of the file's version-control state and | |
1786 ;;; the actions that change it. This is a window open to lossage in a | |
1787 ;;; multi-user environment; someone else could nip in and change the state | |
1788 ;;; of the master during it. | |
1789 ;;; | |
1790 ;;; The performance problem is that rlog/prs calls are very expensive; we want | |
1791 ;;; to avoid them as much as possible. | |
1792 ;;; | |
1793 ;;; ANALYSIS: | |
1794 ;;; | |
1795 ;;; The performance problem, it turns out, simplifies in practice to the | |
1796 ;;; problem of making vc-locking-user fast. The two other functions that call | |
1797 ;;; prs/rlog will not be so commonly used that the slowdown is a problem; one | |
1798 ;;; makes snapshots, the other deletes the calling user's last change in the | |
1799 ;;; master. | |
1800 ;;; | |
1801 ;;; The race condition implies that we have to either (a) lock the master | |
1802 ;;; during the entire execution of vc-next-action, or (b) detect and | |
1803 ;;; recover from errors resulting from dispatch on an out-of-date state. | |
1804 ;;; | |
1805 ;;; Alternative (a) appears to be unfeasible. The problem is that we can't | |
1806 ;;; guarantee that the lock will ever be removed. Suppose a user starts a | |
1807 ;;; checkin, the change message buffer pops up, and the user, having wandered | |
1808 ;;; off to do something else, simply forgets about it? | |
1809 ;;; | |
1810 ;;; Alternative (b), on the other hand, works well with a cheap way to speed up | |
1811 ;;; vc-locking-user. Usually, if a file is registered, we can read its locked/ | |
1812 ;;; unlocked state and its current owner from its permissions. | |
1813 ;;; | |
1814 ;;; This shortcut will fail if someone has manually changed the workfile's | |
1815 ;;; permissions; also if developers are munging the workfile in several | |
1816 ;;; directories, with symlinks to a master (in this latter case, the | |
1817 ;;; permissions shortcut will fail to detect a lock asserted from another | |
1818 ;;; directory). | |
1819 ;;; | |
1820 ;;; Note that these cases correspond exactly to the errors which could happen | |
1821 ;;; because of a competing checkin/checkout race in between two instances of | |
1822 ;;; vc-next-action. | |
1823 ;;; | |
1824 ;;; For VC's purposes, a workfile/master pair may have the following states: | |
1825 ;;; | |
1826 ;;; A. Unregistered. There is a workfile, there is no master. | |
1827 ;;; | |
1828 ;;; B. Registered and not locked by anyone. | |
1829 ;;; | |
1830 ;;; C. Locked by calling user and unchanged. | |
1831 ;;; | |
1832 ;;; D. Locked by the calling user and changed. | |
1833 ;;; | |
1834 ;;; E. Locked by someone other than the calling user. | |
1835 ;;; | |
1836 ;;; This makes for 25 states and 20 error conditions. Here's the matrix: | |
1837 ;;; | |
1838 ;;; VC's idea of state | |
1839 ;;; | | |
1840 ;;; V Actual state RCS action SCCS action Effect | |
1841 ;;; A B C D E | |
1842 ;;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin | |
1843 ;;; B 5 . 6 7 8 co -l get -e checkout | |
1844 ;;; C 9 10 . 11 12 co -u unget; get revert | |
1845 ;;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin | |
1846 ;;; E 17 18 19 20 . rcs -u -M ; rcs -l unget -n ; get -g steal lock | |
1847 ;;; | |
1848 ;;; All commands take the master file name as a last argument (not shown). | |
1849 ;;; | |
1850 ;;; In the discussion below, a "self-race" is a pathological situation in | |
1851 ;;; which VC operations are being attempted simultaneously by two or more | |
1852 ;;; Emacsen running under the same username. | |
1853 ;;; | |
1854 ;;; The vc-next-action code has the following windows: | |
1855 ;;; | |
1856 ;;; Window P: | |
1857 ;;; Between the check for existence of a master file and the call to | |
1858 ;;; admin/checkin in vc-buffer-admin (apparent state A). This window may | |
1859 ;;; never close if the initial-comment feature is on. | |
1860 ;;; | |
1861 ;;; Window Q: | |
1862 ;;; Between the call to vc-workfile-unchanged-p in and the immediately | |
1863 ;;; following revert (apparent state C). | |
1864 ;;; | |
1865 ;;; Window R: | |
1866 ;;; Between the call to vc-workfile-unchanged-p in and the following | |
1867 ;;; checkin (apparent state D). This window may never close. | |
1868 ;;; | |
1869 ;;; Window S: | |
1870 ;;; Between the unlock and the immediately following checkout during a | |
1871 ;;; revert operation (apparent state C). Included in window Q. | |
1872 ;;; | |
1873 ;;; Window T: | |
1874 ;;; Between vc-locking-user and the following checkout (apparent state B). | |
1875 ;;; | |
1876 ;;; Window U: | |
1877 ;;; Between vc-locking-user and the following revert (apparent state C). | |
1878 ;;; Includes windows Q and S. | |
1879 ;;; | |
1880 ;;; Window V: | |
1881 ;;; Between vc-locking-user and the following checkin (apparent state | |
1882 ;;; D). This window may never be closed if the user fails to complete the | |
1883 ;;; checkin message. Includes window R. | |
1884 ;;; | |
1885 ;;; Window W: | |
1886 ;;; Between vc-locking-user and the following steal-lock (apparent | |
2750
6f340eabf13f
Improve doc strings and prompt strings.
Richard M. Stallman <rms@gnu.org>
parents:
2745
diff
changeset
|
1887 ;;; state E). This window may never close if the user fails to complete |
904 | 1888 ;;; the steal-lock message. Includes window X. |
1889 ;;; | |
1890 ;;; Window X: | |
1891 ;;; Between the unlock and the immediately following re-lock during a | |
1892 ;;; steal-lock operation (apparent state E). This window may never cloce | |
1893 ;;; if the user fails to complete the steal-lock message. | |
1894 ;;; | |
1895 ;;; Errors: | |
1896 ;;; | |
1897 ;;; Apparent state A --- | |
1898 ;;; | |
1899 ;;; 1. File looked unregistered but is actually registered and not locked. | |
1900 ;;; | |
1901 ;;; Potential cause: someone else's admin during window P, with | |
1902 ;;; caller's admin happening before their checkout. | |
1903 ;;; | |
1904 ;;; RCS: ci will fail with a "no lock set by <user>" message. | |
1905 ;;; SCCS: admin will fail with error (ad19). | |
1906 ;;; | |
1907 ;;; We can let these errors be passed up to the user. | |
1908 ;;; | |
1909 ;;; 2. File looked unregistered but is actually locked by caller, unchanged. | |
1910 ;;; | |
1911 ;;; Potential cause: self-race during window P. | |
1912 ;;; | |
1913 ;;; RCS: will revert the file to the last saved version and unlock it. | |
1914 ;;; SCCS: will fail with error (ad19). | |
1915 ;;; | |
1916 ;;; Either of these consequences is acceptable. | |
1917 ;;; | |
1918 ;;; 3. File looked unregistered but is actually locked by caller, changed. | |
1919 ;;; | |
1920 ;;; Potential cause: self-race during window P. | |
1921 ;;; | |
1922 ;;; RCS: will register the caller's workfile as a delta with a | |
1923 ;;; null change comment (the -t- switch will be ignored). | |
1924 ;;; SCCS: will fail with error (ad19). | |
1925 ;;; | |
1926 ;;; 4. File looked unregistered but is locked by someone else. | |
1927 ;;; | |
1928 ;;; Potential cause: someone else's admin during window P, with | |
1929 ;;; caller's admin happening *after* their checkout. | |
1930 ;;; | |
1931 ;;; RCS: will fail with a "no lock set by <user>" message. | |
1932 ;;; SCCS: will fail with error (ad19). | |
1933 ;;; | |
1934 ;;; We can let these errors be passed up to the user. | |
1935 ;;; | |
1936 ;;; Apparent state B --- | |
1937 ;;; | |
1938 ;;; 5. File looked registered and not locked, but is actually unregistered. | |
1939 ;;; | |
1940 ;;; Potential cause: master file got nuked during window P. | |
1941 ;;; | |
1942 ;;; RCS: will fail with "RCS/<file>: No such file or directory" | |
1943 ;;; SCCS: will fail with error ut4. | |
1944 ;;; | |
1945 ;;; We can let these errors be passed up to the user. | |
1946 ;;; | |
1947 ;;; 6. File looked registered and not locked, but is actually locked by the | |
1948 ;;; calling user and unchanged. | |
1949 ;;; | |
1950 ;;; Potential cause: self-race during window T. | |
1951 ;;; | |
1952 ;;; RCS: in the same directory as the previous workfile, co -l will fail | |
1953 ;;; with "co error: writable foo exists; checkout aborted". In any other | |
1954 ;;; directory, checkout will succeed. | |
1955 ;;; SCCS: will fail with ge17. | |
1956 ;;; | |
1957 ;;; Either of these consequences is acceptable. | |
1958 ;;; | |
1959 ;;; 7. File looked registered and not locked, but is actually locked by the | |
1960 ;;; calling user and changed. | |
1961 ;;; | |
1962 ;;; As case 6. | |
1963 ;;; | |
1964 ;;; 8. File looked registered and not locked, but is actually locked by another | |
1965 ;;; user. | |
1966 ;;; | |
1967 ;;; Potential cause: someone else checks it out during window T. | |
1968 ;;; | |
1969 ;;; RCS: co error: revision 1.3 already locked by <user> | |
1970 ;;; SCCS: fails with ge4 (in directory) or ut7 (outside it). | |
1971 ;;; | |
1972 ;;; We can let these errors be passed up to the user. | |
1973 ;;; | |
1974 ;;; Apparent state C --- | |
1975 ;;; | |
1976 ;;; 9. File looks locked by calling user and unchanged, but is unregistered. | |
1977 ;;; | |
1978 ;;; As case 5. | |
1979 ;;; | |
1980 ;;; 10. File looks locked by calling user and unchanged, but is actually not | |
1981 ;;; locked. | |
1982 ;;; | |
1983 ;;; Potential cause: a self-race in window U, or by the revert's | |
1984 ;;; landing during window X of some other user's steal-lock or window S | |
1985 ;;; of another user's revert. | |
1986 ;;; | |
1987 ;;; RCS: succeeds, refreshing the file from the identical version in | |
1988 ;;; the master. | |
1989 ;;; SCCS: fails with error ut4 (p file nonexistent). | |
1990 ;;; | |
1991 ;;; Either of these consequences is acceptable. | |
1992 ;;; | |
1993 ;;; 11. File is locked by calling user. It looks unchanged, but is actually | |
1994 ;;; changed. | |
1995 ;;; | |
1996 ;;; Potential cause: the file would have to be touched by a self-race | |
1997 ;;; during window Q. | |
1998 ;;; | |
1999 ;;; The revert will succeed, removing whatever changes came with | |
2000 ;;; the touch. It is theoretically possible that work could be lost. | |
2001 ;;; | |
2002 ;;; 12. File looks like it's locked by the calling user and unchanged, but | |
2003 ;;; it's actually locked by someone else. | |
2004 ;;; | |
2005 ;;; Potential cause: a steal-lock in window V. | |
2006 ;;; | |
2007 ;;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u | |
2008 ;;; SCCS: fails with error un2 | |
2009 ;;; | |
2010 ;;; We can pass these errors up to the user. | |
2011 ;;; | |
2012 ;;; Apparent state D --- | |
2013 ;;; | |
2014 ;;; 13. File looks like it's locked by the calling user and changed, but it's | |
2015 ;;; actually unregistered. | |
2016 ;;; | |
2017 ;;; Potential cause: master file got nuked during window P. | |
2018 ;;; | |
2019 ;;; RCS: Checks in the user's version as an initial delta. | |
2020 ;;; SCCS: will fail with error ut4. | |
2021 ;;; | |
2022 ;;; This case is kind of nasty. It means VC may fail to detect the | |
2023 ;;; loss of previous version information. | |
2024 ;;; | |
2025 ;;; 14. File looks like it's locked by the calling user and changed, but it's | |
2026 ;;; actually unlocked. | |
2027 ;;; | |
2028 ;;; Potential cause: self-race in window V, or the checkin happening | |
2029 ;;; during the window X of someone else's steal-lock or window S of | |
2030 ;;; someone else's revert. | |
2031 ;;; | |
2032 ;;; RCS: ci will fail with "no lock set by <user>". | |
2033 ;;; SCCS: delta will fail with error ut4. | |
2034 ;;; | |
2035 ;;; 15. File looks like it's locked by the calling user and changed, but it's | |
2036 ;;; actually locked by the calling user and unchanged. | |
2037 ;;; | |
2038 ;;; Potential cause: another self-race --- a whole checkin/checkout | |
2039 ;;; sequence by the calling user would have to land in window R. | |
2040 ;;; | |
2041 ;;; SCCS: checks in a redundant delta and leaves the file unlocked as usual. | |
2042 ;;; RCS: reverts to the file state as of the second user's checkin, leaving | |
2043 ;;; the file unlocked. | |
2044 ;;; | |
2045 ;;; It is theoretically possible that work could be lost under RCS. | |
2046 ;;; | |
2047 ;;; 16. File looks like it's locked by the calling user and changed, but it's | |
2048 ;;; actually locked by a different user. | |
2049 ;;; | |
2050 ;;; RCS: ci error: no lock set by <user> | |
2051 ;;; SCCS: unget will fail with error un2 | |
2052 ;;; | |
2053 ;;; We can pass these errors up to the user. | |
2054 ;;; | |
2055 ;;; Apparent state E --- | |
2056 ;;; | |
2057 ;;; 17. File looks like it's locked by some other user, but it's actually | |
2058 ;;; unregistered. | |
2059 ;;; | |
2060 ;;; As case 13. | |
2061 ;;; | |
2062 ;;; 18. File looks like it's locked by some other user, but it's actually | |
2063 ;;; unlocked. | |
2064 ;;; | |
2065 ;;; Potential cause: someone released a lock during window W. | |
2066 ;;; | |
2067 ;;; RCS: The calling user will get the lock on the file. | |
2068 ;;; SCCS: unget -n will fail with cm4. | |
2069 ;;; | |
2070 ;;; Either of these consequences will be OK. | |
2071 ;;; | |
2072 ;;; 19. File looks like it's locked by some other user, but it's actually | |
2073 ;;; locked by the calling user and unchanged. | |
2074 ;;; | |
2075 ;;; Potential cause: the other user relinquishing a lock followed by | |
2076 ;;; a self-race, both in window W. | |
2077 ;;; | |
2078 ;;; Under both RCS and SCCS, both unlock and lock will succeed, making | |
2079 ;;; the sequence a no-op. | |
2080 ;;; | |
2081 ;;; 20. File looks like it's locked by some other user, but it's actually | |
2082 ;;; locked by the calling user and changed. | |
2083 ;;; | |
2084 ;;; As case 19. | |
2085 ;;; | |
2086 ;;; PROBLEM CASES: | |
2087 ;;; | |
2088 ;;; In order of decreasing severity: | |
2089 ;;; | |
2090 ;;; Cases 11 and 15 under RCS are the only one that potentially lose work. | |
2091 ;;; They would require a self-race for this to happen. | |
2092 ;;; | |
2093 ;;; Case 13 in RCS loses information about previous deltas, retaining | |
2094 ;;; only the information in the current workfile. This can only happen | |
2095 ;;; if the master file gets nuked in window P. | |
2096 ;;; | |
2097 ;;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with | |
2098 ;;; no change comment in the master. This would require a self-race in | |
2099 ;;; window P or R respectively. | |
2100 ;;; | |
2101 ;;; Cases 2, 10, 19 and 20 do extra work, but make no changes. | |
2102 ;;; | |
2103 ;;; Unfortunately, it appears to me that no recovery is possible in these | |
2104 ;;; cases. They don't yield error messages, so there's no way to tell that | |
2105 ;;; a race condition has occurred. | |
2106 ;;; | |
2107 ;;; All other cases don't change either the workfile or the master, and | |
2108 ;;; trigger command errors which the user will see. | |
2109 ;;; | |
2110 ;;; Thus, there is no explicit recovery code. | |
2111 | |
2112 ;;; vc.el ends here |