Mercurial > emacs
annotate lisp/vc.el @ 2550:28bca94e66c3
Comment fixes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 17 Apr 1993 06:45:29 +0000 |
parents | 3af65d9b91e7 |
children | 5686672705bf |
rev | line source |
---|---|
904 | 1 ;;; vc.el --- drive a version-control system from within Emacs |
2 | |
3 ;; Copyright (C) 1992 Free Software Foundation, Inc. | |
4 | |
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> | |
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
|
6 ;; Version: 5.4 |
904 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
24 ;;; Commentary: | |
25 | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
26 ;; 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
|
27 ;; |
904 | 28 ;; This was designed and implemented by Eric Raymond <esr@snark.thyrsus.com>. |
29 ;; Paul Eggert <eggert@twinsun.com>, Sebastian Kremer <sk@thp.uni-koeln.de>, | |
30 ;; and Richard Stallman contributed valuable criticism, support, and testing. | |
31 ;; | |
32 ;; Supported version-control systems presently include SCCS and RCS; | |
33 ;; your RCS version should be 5.6.2 or later for proper operation of | |
34 ;; the lock-breaking code. | |
35 ;; | |
36 ;; The RCS code assumes strict locking. You can support the RCS -x option | |
37 ;; by adding pairs to the vc-master-templates list. | |
38 ;; | |
39 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff | |
40 ;; to be installed somewhere on Emacs's path for executables. | |
41 ;; | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
42 ;; 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
|
43 ;; 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
|
44 ;; |
904 | 45 ;; 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
|
46 ;; status. Thus, you need Emacs 18.58 or later to run it. For 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
|
47 ;; vc-directory command to work properly, you need 19 |
904 | 48 ;; |
49 ;; The vc code maintains some internal state in order to reduce expensive | |
50 ;; version-control operations to a minimum. Some names are only computed | |
51 ;; once. If you perform version control operations with RCS/SCCS/CVS while | |
52 ;; vc's back is turned, or move/rename master files while vc is running, | |
53 ;; vc may get seriously confused. Don't do these things! | |
54 ;; | |
55 ;; Developer's notes on some concurrency issues are included at the end of | |
56 ;; the file. | |
57 | |
58 ;;; Code: | |
59 | |
60 (require 'vc-hooks) | |
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
|
61 (require 'dired) |
904 | 62 |
63 ;; General customization | |
64 | |
65 (defvar vc-default-back-end nil | |
66 "*Back-end actually used by this interface; may be SCCS or RCS. | |
67 The value is only computed when needed to avoid an expensive search.") | |
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
|
68 (defvar vc-diff-options '("-a" "-c2") |
904 | 69 "*The command/flags list to be used in constructing diff commands.") |
70 (defvar vc-suppress-confirm nil | |
71 "*If non-nil, reat user as expert; suppress yes-no prompts on some things.") | |
72 (defvar vc-keep-workfiles t | |
73 "*If non-nil, don't delete working files after registering changes.") | |
74 (defvar vc-initial-comment nil | |
75 "*Prompt for initial comment when a file is registered.") | |
76 (defvar vc-command-messages nil | |
77 "*Display run messages from back-end commands.") | |
78 (defvar vc-mistrust-permissions 'file-symlink-p | |
79 "*Don't assume that permissions and ownership track version-control status.") | |
80 | |
1335
d649d430148d
(vc-checkin-switches): New defvar.
Roland McGrath <roland@gnu.org>
parents:
1243
diff
changeset
|
81 (defvar vc-checkin-switches nil |
d649d430148d
(vc-checkin-switches): New defvar.
Roland McGrath <roland@gnu.org>
parents:
1243
diff
changeset
|
82 "*Extra switches passed to the checkin program by \\[vc-checkin].") |
d649d430148d
(vc-checkin-switches): New defvar.
Roland McGrath <roland@gnu.org>
parents:
1243
diff
changeset
|
83 |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
84 ;;;###autoload |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
85 (defvar vc-checkin-hook nil |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
86 "*List of functions called after a vc-checkin is done. See `run-hooks'.") |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
87 |
904 | 88 ;; Header-insertion hair |
89 | |
90 (defvar vc-header-alist | |
91 '((SCCS "\%W\%") (RCS "\$Id\$")) | |
92 "*Header keywords to be inserted when vc-insert-header is executed.") | |
93 (defconst vc-static-header-alist | |
94 '(("\\.c$" . | |
95 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n")) | |
96 "*Associate static header string templates with file types. A \%s in the | |
97 template is replaced with the first string associated with the file's | |
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
|
98 verson-control type in vc-header-alist.") |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
99 |
904 | 100 (defvar vc-comment-alist |
101 '((nroff-mode ".\\\"" "")) | |
102 "*Special comment delimiters to be used in generating vc headers only. | |
103 Add an entry in this list if you need to override the normal comment-start | |
104 and comment-end variables. This will only be necessary if the mode language | |
105 is sensitive to blank lines.") | |
106 | |
107 ;; Variables the user doesn't need to know about. | |
108 (defvar vc-log-entry-mode nil) | |
109 (defvar vc-log-operation nil) | |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
110 (defvar vc-log-after-operation-hook nil) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
111 (defvar vc-checkout-writeable-buffer-hook 'vc-checkout-writeable-buffer) |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
112 (defvar vc-parent-buffer nil) |
904 | 113 |
1494
64f5e84c822b
(vc-admin): Pass t as noquery arg to vc-resynch-window.
Richard M. Stallman <rms@gnu.org>
parents:
1478
diff
changeset
|
114 (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
|
115 (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
|
116 |
904 | 117 (defconst vc-name-assoc-file "VC-names") |
118 | |
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
|
119 (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
|
120 |
904 | 121 ;; File property caching |
122 | |
123 (defun vc-file-clearprops (file) | |
124 ;; clear all properties of a given file | |
125 (setplist (intern file vc-file-prop-obarray) nil)) | |
126 | |
127 ;; Random helper functions | |
128 | |
129 (defun vc-name (file) | |
130 "Return the master name of a file, nil if it is not registered" | |
131 (or (vc-file-getprop file 'vc-name) | |
132 (vc-file-setprop file 'vc-name | |
133 (let ((name-and-type (vc-registered file))) | |
134 (and name-and-type (car name-and-type)))))) | |
135 | |
136 (defvar vc-binary-assoc nil) | |
137 | |
138 (defun vc-find-binary (name) | |
139 "Look for a command anywhere on the subprocess-command search path." | |
140 (or (cdr (assoc name vc-binary-assoc)) | |
141 (let ((full nil)) | |
142 (catch 'found | |
143 (mapcar | |
144 (function (lambda (s) | |
145 (if (and s (file-exists-p (setq full (concat s "/" name)))) | |
146 (throw 'found nil)))) | |
147 exec-path)) | |
148 (if full | |
149 (setq vc-binary-assoc (cons (cons name full) vc-binary-assoc))) | |
150 full))) | |
151 | |
152 (defun vc-do-command (okstatus command file &rest flags) | |
153 "Execute a version-control command, notifying user and checking for errors. | |
154 The command is successful if its exit status does not exceed OKSTATUS. | |
155 Output from COMMAND goes to buffer *vc*. The last argument of the command is | |
156 the master name of FILE; this is appended to an optional list of FLAGS." | |
157 (setq file (expand-file-name file)) | |
158 (if vc-command-messages | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
159 (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
|
160 (let ((obuf (current-buffer)) (camefrom (current-buffer)) |
904 | 161 (squeezed nil) |
162 (vc-file (and file (vc-name file))) | |
163 status) | |
164 (set-buffer (get-buffer-create "*vc*")) | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
165 (make-local-variable 'vc-parent-buffer) |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
166 (setq vc-parent-buffer camefrom) |
904 | 167 (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
|
168 |
75e8a7f920c7
* vc.el (vc-do-command): Set the default directory of the *vc*
Jim Blandy <jimb@redhat.com>
parents:
1636
diff
changeset
|
169 ;; 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
|
170 ;; 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
|
171 (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
|
172 |
904 | 173 (mapcar |
174 (function (lambda (s) (and s (setq squeezed (append squeezed (list s)))))) | |
175 flags) | |
176 (if vc-file | |
177 (setq squeezed (append squeezed (list vc-file)))) | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
178 (let ((default-directory (file-name-directory (or file "./")))) |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
179 (setq status (apply 'call-process command nil t nil squeezed))) |
904 | 180 (goto-char (point-max)) |
181 (previous-line 1) | |
182 (if (or (not (integerp status)) (< okstatus status)) | |
183 (progn | |
184 (previous-line 1) | |
185 (print (cons command squeezed)) | |
186 (next-line 1) | |
187 (pop-to-buffer "*vc*") | |
188 (vc-shrink-to-fit) | |
189 (goto-char (point-min)) | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
190 (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
|
191 (if (integerp status) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
192 (format "status %d" status) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
193 status)) |
904 | 194 ) |
195 (if vc-command-messages | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
196 (message "Running %s...OK" command)) |
904 | 197 ) |
198 (set-buffer obuf) | |
199 status) | |
200 ) | |
201 | |
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
|
202 ;;; 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
|
203 ;;; 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
|
204 ;;; 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
|
205 (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
|
206 (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
|
207 (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
|
208 (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
|
209 (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
|
210 |
e3c02a517030
Thu Nov 19 16:44:24 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents:
1575
diff
changeset
|
211 ;;; 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
|
212 ;;; 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
|
213 (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
|
214 (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
|
215 (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
|
216 (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
|
217 (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
|
218 (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
|
219 (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
|
220 (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
|
221 (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
|
222 ;; 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
|
223 ;; 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
|
224 (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
|
225 ;; 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
|
226 ;; 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
|
227 (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
|
228 ;; 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
|
229 (- (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
|
230 |
904 | 231 (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
|
232 ;; 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
|
233 ;; Revert buffer, try to keep point and mark where user expects them in spite |
904 | 234 ;; of changes because of expanded version-control key words. |
235 ;; This is quite important since otherwise typeahead won't work as expected. | |
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
|
236 ;; The algorithm for reparsing the *compilation* buffer if necessary was |
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
|
237 ;; contributed by Johnathan Vail and Kevin Rodgers. |
904 | 238 (interactive "P") |
239 (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
|
240 (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
|
241 ;; 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
|
242 (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
|
243 (vc-position-context (mark-marker)))) |
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
|
244 ;; We may want to reparse the compilation buffer after 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
|
245 (reparse (and (boundp 'compilation-error-list) |
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
|
246 (listp compilation-error-list) |
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
|
247 (let ((buffer (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
|
248 (errors compilation-error-list) |
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
|
249 (buffer-error-marked-p 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
|
250 (while (and errors (not buffer-error-marked-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
|
251 (if (eq (marker-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
|
252 (car (cdr (car errors)))) |
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
|
253 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
|
254 (setq buffer-error-marked-p 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
|
255 (setq errors (cdr errors))) |
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
|
256 buffer-error-marked-p))) |
2041
ccb75415543a
(vc-revert-buffer1): Use mark-marker; don't alter mark-active.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
257 ;; Make the right thing happen 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
|
258 (mark-active nil)) |
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
|
259 |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
260 ;; the actual revisit |
904 | 261 (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
|
262 |
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
|
263 ;; Reparse remaining *compilation* errors, if necessary: |
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
|
264 (if reparse ; see next-error (compile.el) |
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
|
265 (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
|
266 (set-buffer "*compilation*") |
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
|
267 (set-buffer-modified-p 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
|
268 (if (consp compilation-error-list) ; not t, nor () |
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
|
269 (setq compilation-parsing-end |
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
|
270 (marker-position |
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
|
271 (car (car compilation-error-list))))) |
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
|
272 (compilation-forget-errors) |
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
|
273 (compilation-parse-errors))) |
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
|
274 |
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
|
275 ;; 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
|
276 (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
|
277 (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
|
278 (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
|
279 (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
|
280 (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
|
281 |
904 | 282 |
283 (defun vc-buffer-sync () | |
284 ;; Make sure the current buffer and its working file are in sync | |
285 (if (and (buffer-modified-p) | |
286 (or | |
287 vc-suppress-confirm | |
288 (y-or-n-p (format "%s has been modified. Write it out? " | |
289 (buffer-name))))) | |
290 (save-buffer))) | |
291 | |
292 (defun vc-workfile-unchanged-p (file) | |
293 ;; Has the given workfile changed since last checkout? | |
294 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time)) | |
295 (lastmod (nth 5 (file-attributes file)))) | |
296 (if checkout-time | |
297 (equal lastmod checkout-time) | |
298 (if (zerop (vc-backend-diff file nil)) | |
299 (progn | |
300 (vc-file-setprop file 'vc-checkout-time lastmod) | |
301 t) | |
302 (progn | |
303 (vc-file-setprop file 'vc-checkout-time '(0 . 0)) | |
304 nil | |
305 )) | |
306 ))) | |
307 | |
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
|
308 (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
|
309 ;;; 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
|
310 (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
|
311 (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
|
312 |
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
|
313 ;; 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
|
314 ((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
|
315 (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
|
316 (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
|
317 (setq vc-log-after-operation-hook |
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
|
318 'vc-checkout-writeable-buffer-hook) |
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
|
319 (vc-checkout-writeable-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
|
320 |
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
|
321 ;; 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
|
322 ((not (setq owner (vc-locking-user 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
|
323 (vc-checkout-writeable-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
|
324 |
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
|
325 ;; 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
|
326 ((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
|
327 (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
|
328 (error "Sorry, you can't steal the lock on %s this way." 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
|
329 (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
|
330 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
|
331 (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
|
332 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
|
333 |
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
|
334 ;; OK, user owns the lock on the 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
|
335 (t (let (file-window) |
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
|
336 (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
|
337 |
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
|
338 ;; 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
|
339 (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
|
340 |
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
|
341 ;; 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
|
342 ;; 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
|
343 ;; 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
|
344 ;; 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
|
345 ;; 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
|
346 (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
|
347 (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
|
348 (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
|
349 (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
|
350 ;; 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
|
351 (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
|
352 |
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
|
353 ;; 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
|
354 (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
|
355 (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
|
356 |
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
|
357 ;; 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
|
358 (vc-checkin file version 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
|
359 )))))) |
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 |
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 (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
|
362 ;; 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
|
363 ;; 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
|
364 (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
|
365 (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
|
366 (save-window-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
|
367 (vc-next-action-on-file (dired-get-filename) nil comment)) nil 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
|
368 ) |
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
|
369 |
927 | 370 ;; Here's the major entry point. |
904 | 371 |
927 | 372 ;;;###autoload |
904 | 373 (defun vc-next-action (verbose) |
374 "Do the next logical checkin or checkout operation on the current file. | |
375 If the file is not already registered, this registers it for version | |
376 control and then retrieves a writeable, locked copy for editing. | |
377 If the file is registered and not locked by anyone, this checks out | |
378 a writeable and locked file ready for editing. | |
379 If the file is checked out and locked by the calling user, this | |
380 first checks to see if the file has changed since checkout. If not, | |
381 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
|
382 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
|
383 of a log message; when the message has been entered, it checks in the |
904 | 384 resulting changes along with the log message as change commentary. If |
385 the variable vc-keep-workfiles is non-nil (which is its default), a | |
386 read-only copy of the changed file is left in place afterwards. | |
387 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
|
388 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
|
389 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
|
390 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
|
391 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
|
392 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
|
393 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
|
394 or checkin operations, but ignored when doing checkouts. Attempted |
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 lock steals will raise an error." |
904 | 396 (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
|
397 (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
|
398 (let ((files (dired-get-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
|
399 (if (null 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
|
400 (find-file-other-window (dired-get-filename)) |
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 (vc-start-entry nil nil 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
|
402 "Enter a change 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
|
403 'vc-next-action-dired))) |
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
|
404 (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
|
405 (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
|
406 (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
|
407 (vc-next-action-on-file buffer-file-name 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
|
408 (error "There is no file associated with buffer %s" (buffer-name))))) |
904 | 409 |
410 ;;; These functions help the vc-next-action entry point | |
411 | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
412 (defun vc-checkout-writeable-buffer () |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
413 "Retrieve a writeable copy of the latest version of the current buffer's file." |
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
|
414 (vc-checkout (buffer-file-name) t) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
415 ) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
416 |
927 | 417 ;;;###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
|
418 (defun vc-register (&optional override comment) |
904 | 419 "Register the current file into your version-control system." |
420 (interactive "P") | |
421 (if (vc-name buffer-file-name) | |
422 (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
|
423 ;; 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
|
424 ;; 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
|
425 (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
|
426 (zerop (buffer-size)) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
427 (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
|
428 (set-buffer-modified-p t)) |
904 | 429 (vc-buffer-sync) |
430 (vc-admin | |
431 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
|
432 (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
|
433 (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
|
434 (format "Initial version level for %s: " buffer-file-name)))) |
904 | 435 ) |
436 | |
1478
429e23e87072
(vc-resynch-window): New arg NOQUERY. Pass it to vc-revert-buffer1.
Richard M. Stallman <rms@gnu.org>
parents:
1352
diff
changeset
|
437 (defun vc-resynch-window (file &optional keep noquery) |
904 | 438 ;; If the given file is in the current buffer, |
439 ;; either revert on it so we see expanded keyworks, | |
440 ;; 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
|
441 ;; 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
|
442 ;; 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
|
443 ;; between the buffer and the file is due to RCS rather than user editing! |
904 | 444 (and (string= buffer-file-name file) |
445 (if keep | |
446 (progn | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1674
diff
changeset
|
447 (vc-revert-buffer1 t noquery) |
904 | 448 (vc-mode-line buffer-file-name)) |
449 (progn | |
450 (delete-window) | |
451 (kill-buffer (current-buffer)))))) | |
452 | |
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
|
453 (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
|
454 ;; 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
|
455 ;; 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
|
456 ;; 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
|
457 ;; 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
|
458 (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
|
459 (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
|
460 (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
|
461 (pop-to-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
|
462 (make-local-variable '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
|
463 (setq vc-parent-buffer parent) |
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 (vc-mode-line (if file (file-name-nondirectory file) " (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
|
465 (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
|
466 (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
|
467 (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
|
468 (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
|
469 (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
|
470 (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
|
471 (erase-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
|
472 (if (not (eq comment 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
|
473 (insert 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
|
474 (vc-finish-logentry)) |
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
|
475 (message "%s Type C-c C-c when done." msg)))) |
904 | 476 |
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
|
477 (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
|
478 "Check a file into your version-control system. |
904 | 479 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
|
480 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
|
481 (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
|
482 (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
|
483 "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
|
484 |
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
|
485 (defun vc-checkout (file &optional writeable) |
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
|
486 "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
|
487 ;; 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
|
488 ;; 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
|
489 (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
|
490 (error "Sorry, you can't check out files over 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
|
491 (vc-backend-checkout file writeable) |
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
|
492 (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
|
493 (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
|
494 ) |
904 | 495 |
496 (defun vc-steal-lock (file rev &optional owner) | |
497 "Steal the lock on the current workfile." | |
498 (interactive) | |
499 (if (not owner) | |
500 (setq owner (vc-locking-user file))) | |
501 (if (not (y-or-n-p (format "Take the lock on %s:%s from %s?" file rev owner))) | |
502 (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
|
503 (require 'sendmail) |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
504 (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
|
505 (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
|
506 (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
|
507 (mail-mode) |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
508 (erase-buffer) |
2087 | 509 (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
|
510 (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
|
511 (goto-char (point-max)) |
904 | 512 (insert |
1343
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
513 (format "I stole the lock on %s:%s, " file rev) |
904 | 514 (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
|
515 ".\n") |
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
516 (message "Please explain why you stole the lock. Type C-c C-c when done.")) |
904 | 517 |
1343
9b5cb40cb6c8
(vc-steal-lock): Use mail-setup, and do like `mail'.
Richard M. Stallman <rms@gnu.org>
parents:
1337
diff
changeset
|
518 ;; This is called when the notification has been sent. |
904 | 519 (defun vc-finish-steal (file version) |
520 (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
|
521 (vc-resynch-window file t t)) |
904 | 522 |
523 (defun vc-checkin (file &optional rev comment) | |
524 "Check in the file specified by FILE. | |
525 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
|
526 \(if nil increment the current level). The file is either retained with write |
904 | 527 permissions zeroed, or deleted (according to the value of vc-keep-workfiles). |
528 COMMENT is a comment string; if omitted, a buffer is | |
529 popped up to accept a comment." | |
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 (setq vc-log-after-operation-hook 'vc-checkin-hook) |
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 (vc-start-entry file rev comment "Enter a change comment." 'vc-backend-checkin)) |
904 | 532 |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
533 ;;; 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
|
534 ;;; ChangeLog facility supported by Emacs. |
2493
3af65d9b91e7
(vc-comment-to-change-log): Merged in the remainder of jimb's last
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2490
diff
changeset
|
535 (defun vc-comment-to-change-log (&optional file) |
3af65d9b91e7
(vc-comment-to-change-log): Merged in the remainder of jimb's last
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2490
diff
changeset
|
536 "Update change log from comments entered into VC for the current file. |
3af65d9b91e7
(vc-comment-to-change-log): Merged in the remainder of jimb's last
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2490
diff
changeset
|
537 Optional FILE specifies the change log file name; see `find-change-log'. |
3af65d9b91e7
(vc-comment-to-change-log): Merged in the remainder of jimb's last
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2490
diff
changeset
|
538 See `vc-update-change-log'." |
3af65d9b91e7
(vc-comment-to-change-log): Merged in the remainder of jimb's last
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2490
diff
changeset
|
539 (let ((log (find-change-log file))) |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
540 (if log |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
541 (let ((default-directory (or (file-name-directory log) |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
542 default-directory))) |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
543 (vc-update-change-log |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
544 (file-relative-name buffer-file-name)))))) |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
545 |
904 | 546 (defun vc-finish-logentry () |
547 "Complete the operation implied by the current log entry." | |
548 (interactive) | |
549 (goto-char (point-max)) | |
550 (if (not (bolp)) (newline)) | |
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
|
551 ;; Append the contents of the log buffer to the comment ring |
904 | 552 (save-excursion |
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
|
553 (set-buffer (get-buffer-create "*VC-comment-ring*")) |
904 | 554 (goto-char (point-max)) |
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
|
555 (set-mark (point)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
556 (insert-buffer-substring "*VC-log*") |
904 | 557 (if (and (not (bobp)) (not (= (char-after (1- (point))) ?\f))) |
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
|
558 (insert-char ?\f 1)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
559 (if (not (bobp)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
560 (forward-char -1)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
561 (exchange-point-and-mark) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
562 ;; Check for errors |
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
|
563 (vc-backend-logentry-check vc-log-file)) |
904 | 564 ;; OK, do it to it |
565 (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
|
566 (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
|
567 (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
|
568 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
|
569 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
|
570 (buffer-string))) |
904 | 571 (error "No log operation is pending.")) |
572 ;; 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
|
573 (pop-to-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
|
574 (vc-error-occurred |
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
|
575 (delete-window (get-buffer-window "*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
|
576 (kill-buffer "*VC-log*") |
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
|
577 (bury-buffer "*VC-comment-ring*") |
904 | 578 ;; 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
|
579 (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
|
580 (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
|
581 (run-hooks vc-log-after-operation-hook)) |
904 | 582 |
583 ;; Code for access to the comment ring | |
584 | |
585 (defun vc-next-comment () | |
586 "Fill the log buffer with the next message in the msg ring." | |
587 (interactive) | |
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
|
588 (erase-buffer) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
589 (save-excursion |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
590 (set-buffer "*VC-comment-ring*") |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
591 (forward-page) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
592 (if (= (point) (point-max)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
593 (goto-char (point-min))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
594 (mark-page) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
595 (append-to-buffer "*VC-log*" (point) (1- (mark))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
596 )) |
904 | 597 |
598 (defun vc-previous-comment () | |
599 "Fill the log buffer with the previous message in the msg ring." | |
600 (interactive) | |
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
|
601 (erase-buffer) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
602 (save-excursion |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
603 (set-buffer "*VC-comment-ring*") |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
604 (if (= (point) (point-min)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
605 (goto-char (point-max))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
606 (backward-page) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
607 (mark-page) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
608 (append-to-buffer "*VC-log*" (point) (1- (mark))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
609 )) |
904 | 610 |
611 (defun vc-comment-search-backward (regexp) | |
612 "Fill the log buffer with the last message in the msg ring matching REGEXP." | |
613 (interactive "sSearch backward for: ") | |
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
|
614 (erase-buffer) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
615 (save-excursion |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
616 (set-buffer "*VC-comment-ring*") |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
617 (if (= (point) (point-min)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
618 (goto-char (point-max))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
619 (re-search-backward regexp nil 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
|
620 (mark-page) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
621 (append-to-buffer "*VC-log*" (point) (1- (mark))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
622 )) |
904 | 623 |
624 (defun vc-comment-search-forward (regexp) | |
625 "Fill the log buffer with the next message in the msg ring matching REGEXP." | |
626 (interactive "sSearch forward for: ") | |
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
|
627 (erase-buffer) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
628 (save-excursion |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
629 (set-buffer "*VC-comment-ring*") |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
630 (if (= (point) (point-max)) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
631 (goto-char (point-min))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
632 (re-search-forward regexp nil 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
|
633 (mark-page) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
634 (append-to-buffer "*VC-log*" (point) (1- (mark))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
635 )) |
904 | 636 |
637 ;; Additional entry points for examining version histories | |
638 | |
927 | 639 ;;;###autoload |
904 | 640 (defun vc-diff (historic) |
641 "Display diffs between file versions." | |
642 (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
|
643 (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
|
644 (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
|
645 (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
|
646 (pop-to-buffer vc-parent-buffer)) |
904 | 647 (if historic |
648 (call-interactively 'vc-version-diff) | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
649 (let ((file buffer-file-name) |
904 | 650 unchanged) |
651 (vc-buffer-sync) | |
652 (setq unchanged (vc-workfile-unchanged-p buffer-file-name)) | |
653 (if unchanged | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
654 (message "No changes to %s since latest version." file) |
904 | 655 (pop-to-buffer "*vc*") |
656 (vc-backend-diff file nil) | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
657 (vc-shrink-to-fit) |
904 | 658 (goto-char (point-min)) |
659 ) | |
660 (not unchanged) | |
661 ) | |
662 ) | |
663 ) | |
664 | |
665 (defun vc-version-diff (file rel1 rel2) | |
666 "For FILE, report diffs between two stored versions REL1 and REL2 of it. | |
667 If FILE is a directory, generate diffs between versions for all registered | |
668 files in or below it." | |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
669 (interactive "FFile or directory to diff: \nsOlder version: \nsNewer version: ") |
904 | 670 (if (string-equal rel1 "") (setq rel1 nil)) |
671 (if (string-equal rel2 "") (setq rel2 nil)) | |
672 (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
|
673 (let ((camefrom (current-buffer))) |
904 | 674 (set-buffer (get-buffer-create "*vc-status*")) |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
675 (make-local-variable 'vc-parent-buffer) |
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
676 (setq vc-parent-buffer camefrom) |
904 | 677 (erase-buffer) |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
678 (insert "Diffs between " |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
679 (or rel1 "last version checked in") |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
680 " and " |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
681 (or rel2 "current workfile(s)") |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
682 ":\n\n") |
904 | 683 (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
|
684 (cd file) |
904 | 685 (vc-file-tree-walk |
686 (function (lambda (f) | |
2219
a729b16f7427
(vc-version-diff): Use (message ...), not (message (format ...)).
Paul Eggert <eggert@twinsun.com>
parents:
2212
diff
changeset
|
687 (message "Looking at %s" f) |
904 | 688 (and |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
689 (not (file-directory-p f)) |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
690 (vc-registered f) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
691 (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
|
692 (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
|
693 ))) |
904 | 694 (pop-to-buffer "*vc-status*") |
695 (insert "\nEnd of diffs.\n") | |
696 (goto-char (point-min)) | |
697 (set-buffer-modified-p nil) | |
698 ) | |
699 (progn | |
700 (vc-backend-diff file rel1 rel2) | |
701 (goto-char (point-min)) | |
702 (if (equal (point-min) (point-max)) | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
703 (message "No changes to %s between %s and %s." file rel1 rel2) |
904 | 704 (pop-to-buffer "*vc*") |
705 (goto-char (point-min)) | |
706 ) | |
707 ) | |
708 ) | |
709 ) | |
710 | |
711 ;; Header-insertion code | |
712 | |
927 | 713 ;;;###autoload |
904 | 714 (defun vc-insert-headers () |
715 "Insert headers in a file for use with your version-control system. | |
716 Headers desired are inserted at the start of the buffer, and are pulled from | |
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
|
717 the variable vc-header-alist" |
904 | 718 (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
|
719 (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
|
720 (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
|
721 (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
|
722 (pop-to-buffer vc-parent-buffer)) |
904 | 723 (save-excursion |
724 (save-restriction | |
725 (widen) | |
726 (if (or (not (vc-check-headers)) | |
727 (y-or-n-p "Version headers already exist. Insert another set?")) | |
728 (progn | |
729 (let* ((delims (cdr (assq major-mode vc-comment-alist))) | |
730 (comment-start-vc (or (car delims) comment-start "#")) | |
731 (comment-end-vc (or (car (cdr delims)) comment-end "")) | |
732 (hdstrings (cdr (assoc (vc-backend-deduce (buffer-file-name)) vc-header-alist)))) | |
733 (mapcar (function (lambda (s) | |
734 (insert comment-start-vc "\t" s "\t" | |
735 comment-end-vc "\n"))) | |
736 hdstrings) | |
737 (if vc-static-header-alist | |
738 (mapcar (function (lambda (f) | |
739 (if (string-match (car f) buffer-file-name) | |
740 (insert (format (cdr f) (car hdstrings)))))) | |
741 vc-static-header-alist)) | |
742 ) | |
743 ))))) | |
744 | |
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
|
745 ;; 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
|
746 ;; 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
|
747 |
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
|
748 (or (assq 'vc-dired-mode minor-mode-map-alist) |
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
|
749 (setq minor-mode-map-alist |
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
|
750 (cons 'vc-dired-mode minor-mode-map-alist))) |
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
|
751 |
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
|
752 (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
|
753 "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
|
754 All Dired commands operate normally. Users currently locking listed 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
|
755 are listed at the left-hand side of the buffer, following the Dired mark area. |
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
|
756 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
|
757 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
|
758 (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
|
759 (setq vc-mode " under VC")) |
904 | 760 |
927 | 761 ;;;###autoload |
904 | 762 (defun vc-directory (verbose) |
763 "Show version-control status of all files under the current directory." | |
764 (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
|
765 (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
|
766 (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
|
767 (filelist nil) (userlist 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
|
768 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
|
769 (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
|
770 (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
|
771 (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
|
772 (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
|
773 (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
|
774 (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
|
775 (setq userlist (cons user userlist)))))))) |
904 | 776 (save-excursion |
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
|
777 (dired (cons default-directory (nreverse 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
|
778 (setq dired-buf (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
|
779 (setq nonempty (not (zerop (buffer-size))))) |
904 | 780 (if nonempty |
781 (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
|
782 (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
|
783 (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
|
784 (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
|
785 (setq buffer-read-only 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
|
786 (mapcar |
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
|
787 (function (lambda (x) |
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
|
788 (forward-char 2) ;; skip dired's mark area |
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
|
789 (if x (insert x)) |
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
|
790 (insert "\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
|
791 (forward-line 1))) |
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
|
792 (cons "\t" (nreverse userlist))) |
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
|
793 (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
|
794 (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
|
795 ) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
796 (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
|
797 (if verbose "registered" "locked") default-directory)) |
904 | 798 )) |
799 | |
800 ;; Named-configuration support for SCCS | |
801 | |
802 (defun vc-add-triple (name file rev) | |
803 (save-excursion | |
804 (find-file (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file)) | |
805 (goto-char (point-max)) | |
806 (insert name "\t:\t" file "\t" rev "\n") | |
807 (basic-save-buffer) | |
808 (kill-buffer (current-buffer)) | |
809 )) | |
810 | |
811 (defun vc-record-rename (file newname) | |
812 (save-excursion | |
813 (find-file (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file)) | |
814 (goto-char (point-min)) | |
815 (replace-regexp (concat ":" (regexp-quote file) "$") (concat ":" newname)) | |
816 (basic-save-buffer) | |
817 (kill-buffer (current-buffer)) | |
818 )) | |
819 | |
820 (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
|
821 ;; 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
|
822 ;; If name is nil or a version number string it's just passed through |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
823 (cond ((null 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
|
824 ((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
|
825 (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
|
826 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
|
827 (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
|
828 (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
|
829 (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
|
830 (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
|
831 ))) |
904 | 832 |
833 ;; Named-configuration entry points | |
834 | |
835 (defun vc-quiescent-p () | |
836 ;; Is the current directory ready to be snapshot? | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
837 (catch 'quiet |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
838 (vc-file-tree-walk |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
839 (function (lambda (f) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
840 (if (and (vc-registered f) (vc-locking-user f)) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
841 (throw 'quiet nil))))) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
842 t)) |
904 | 843 |
927 | 844 ;;;###autoload |
904 | 845 (defun vc-create-snapshot (name) |
846 "Make a snapshot called NAME. | |
847 The snapshot is made from all registered files at or below the current | |
848 directory. For each file, the version level of its latest | |
849 version becomes part of the named configuration." | |
850 (interactive "sNew snapshot name: ") | |
851 (if (not (vc-quiescent-p)) | |
852 (error "Can't make a snapshot, locked files are in the way.") | |
853 (vc-file-tree-walk | |
854 (function (lambda (f) (and | |
855 (vc-name f) | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
856 (vc-backend-assign-name f name))))) |
904 | 857 )) |
858 | |
927 | 859 ;;;###autoload |
904 | 860 (defun vc-retrieve-snapshot (name) |
861 "Retrieve the snapshot called NAME. | |
862 This function fails if any files are locked at or below the current directory | |
863 Otherwise, all registered files are checked out (unlocked) at their version | |
864 levels in the snapshot." | |
865 (interactive "sSnapshot name to retrieve: ") | |
866 (if (not (vc-quiescent-p)) | |
867 (error "Can't retrieve a snapshot, locked files are in the way.") | |
868 (vc-file-tree-walk | |
869 (function (lambda (f) (and | |
870 (vc-name f) | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
871 (vc-error-occurred (vc-backend-checkout f nil name)))))) |
904 | 872 )) |
873 | |
874 ;; Miscellaneous other entry points | |
875 | |
927 | 876 ;;;###autoload |
904 | 877 (defun vc-print-log () |
878 "List the change log of the current buffer in a window." | |
879 (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
|
880 (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
|
881 (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
|
882 (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
|
883 (pop-to-buffer vc-parent-buffer)) |
904 | 884 (if (and buffer-file-name (vc-name buffer-file-name)) |
885 (progn | |
886 (vc-backend-print-log buffer-file-name) | |
887 (pop-to-buffer (get-buffer-create "*vc*")) | |
2402
61e1f8813d03
(vc-comment-to-changelog): A useful vc-checkin hook, added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2226
diff
changeset
|
888 (vc-shrink-to-fit) |
904 | 889 (goto-char (point-min)) |
890 ) | |
891 (error "There is no version-control master associated with this buffer") | |
892 ) | |
893 ) | |
894 | |
927 | 895 ;;;###autoload |
904 | 896 (defun vc-revert-buffer () |
952 | 897 "Revert the current buffer's file back to the latest checked-in version. |
898 This asks for confirmation if the buffer contents are not identical | |
899 to that version." | |
904 | 900 (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
|
901 (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
|
902 (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
|
903 (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
|
904 (pop-to-buffer vc-parent-buffer)) |
904 | 905 (let ((file buffer-file-name) |
906 (obuf (current-buffer)) (changed (vc-diff nil))) | |
952 | 907 (if (and changed (or vc-suppress-confirm |
908 (not (yes-or-no-p "Discard changes? ")))) | |
904 | 909 (progn |
910 (delete-window) | |
911 (error "Revert cancelled.")) | |
912 (set-buffer obuf)) | |
913 (if changed | |
914 (delete-window)) | |
915 (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
|
916 (vc-resynch-window file t t) |
904 | 917 ) |
918 ) | |
919 | |
927 | 920 ;;;###autoload |
904 | 921 (defun vc-cancel-version (norevert) |
922 "Undo your latest checkin." | |
923 (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
|
924 (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
|
925 (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
|
926 (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
|
927 (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
|
928 (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
|
929 (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
|
930 (prompt (if (string-equal yours 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
|
931 "Remove your version %s from master?" |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
932 "Version %s was not your change. Remove it anyway?"))) |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
933 (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
|
934 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
|
935 (vc-backend-uncheck (buffer-file-name) 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
|
936 (if norevert |
b2216b3b8f57
(vc-header-strings) Name changed to vc-header-alist, to match the
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2219
diff
changeset
|
937 (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
|
938 (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
|
939 )) |
904 | 940 |
941 (defun vc-rename-file (old new) | |
942 "Rename a file, taking its master files with it." | |
943 (interactive "fOld name: \nFNew name: ") | |
944 (let ((oldbuf (get-file-buffer old))) | |
945 (if (buffer-modified-p oldbuf) | |
946 (error "Please save files before moving them.")) | |
947 (if (get-file-buffer new) | |
948 (error "Already editing new file name.")) | |
949 (let ((oldmaster (vc-name old))) | |
950 (if oldmaster | |
951 (if (vc-locking-user old) | |
952 (error "Please check in files before moving them.")) | |
953 (if (or (file-symlink-p oldmaster) | |
1243
de79e26e67cf
(vc-rename-file): Use OLD, not FILE which is unbound.
Richard M. Stallman <rms@gnu.org>
parents:
1232
diff
changeset
|
954 ;; 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
|
955 (file-symlink-p (vc-backend-subdirectory-name old))) |
904 | 956 (error "This is not a safe thing to do in the presence of symbolic links.")) |
957 (rename-file oldmaster (vc-name new))) | |
958 (if (or (not oldmaster) (file-exists-p old)) | |
959 (rename-file old new))) | |
960 ; ?? Renaming a file might change its contents due to keyword expansion. | |
961 ; We should really check out a new copy if the old copy was precisely equal | |
962 ; to some checked in version. However, testing for this is tricky.... | |
963 (if oldbuf | |
964 (save-excursion | |
965 (set-buffer oldbuf) | |
966 (set-visited-file-name new) | |
967 (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
|
968 ;; 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
|
969 (vc-backend-dispatch old |
904 | 970 (vc-record-rename old new) |
971 nil) | |
972 ) | |
973 | |
927 | 974 ;;;###autoload |
1226
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
975 (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
|
976 "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
|
977 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
|
978 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
|
979 With any numeric prefix arg, find log entries for all files currently visited. |
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
980 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
|
981 (interactive |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
982 (cond ((consp current-prefix-arg) ;C-u |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
983 (list buffer-file-name)) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
984 (current-prefix-arg ;Numeric argument. |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
985 (let ((files nil) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
986 (buffers (buffer-list)) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
987 file) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
988 (while buffers |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
989 (setq file (buffer-file-name (car buffers))) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
990 (and file (vc-backend-deduce file) |
1232
2c56a159c9b6
(vc-update-change-log): Use file-relative-name.
Roland McGrath <roland@gnu.org>
parents:
1227
diff
changeset
|
991 (setq files (cons (file-relative-name file) files))) |
1227
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
992 (setq buffers (cdr buffers))) |
d07030650283
(vc-checkin-hook): New user hook variable.
Roland McGrath <roland@gnu.org>
parents:
1226
diff
changeset
|
993 files)))) |
1226
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
994 (find-file-other-window "ChangeLog") |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
995 (barf-if-buffer-read-only) |
1226
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
996 (vc-buffer-sync) |
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
997 (undo-boundary) |
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
998 (goto-char (point-min)) |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
999 (push-mark) |
1226
573df03a54d8
(vc-update-change-log): Use shell-command, not shell-command-on-region.
Roland McGrath <roland@gnu.org>
parents:
952
diff
changeset
|
1000 (message "Computing change log entries...") |
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
|
1001 (message "Computing change log entries... %s" |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1002 (if (eq 0 (apply 'call-process "rcs2log" nil t nil args)) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1003 "done" "failed"))) |
904 | 1004 |
1005 ;; Functions for querying the master and lock files. | |
1006 | |
1007 (defun match-substring (bn) | |
1008 (buffer-substring (match-beginning bn) (match-end bn))) | |
1009 | |
1010 (defun vc-parse-buffer (patterns &optional file properties) | |
1011 ;; Use PATTERNS to parse information out of the current buffer | |
1012 ;; by matching each regular expression in the list and returning \\1. | |
1013 ;; If a regexp has two tag brackets, assume the second is a date | |
1014 ;; field and we want the most recent entry matching the template. | |
1015 ;; If FILE and PROPERTIES are given, the latter must be a list of | |
1016 ;; properties of the same length as PATTERNS; each property is assigned | |
1017 ;; the corresponding value. | |
1018 (mapcar (function (lambda (p) | |
1019 (goto-char (point-min)) | |
1020 (if (string-match "\\\\(.*\\\\(" p) | |
1021 (let ((latest-date "") (latest-val)) | |
1022 (while (re-search-forward p nil t) | |
1023 (let ((date (match-substring 2))) | |
1024 (if (string< latest-date date) | |
1025 (progn | |
1026 (setq latest-date date) | |
1027 (setq latest-val | |
1028 (match-substring 1)))))) | |
1029 latest-val)) | |
1030 (prog1 | |
1031 (and (re-search-forward p nil t) | |
1032 (let ((value (match-substring 1))) | |
1033 (if file | |
1034 (vc-file-setprop file (car properties) value)) | |
1035 value)) | |
1036 (setq properties (cdr properties))))) | |
1037 patterns) | |
1038 ) | |
1039 | |
1040 (defun vc-master-info (file fields &optional rfile properties) | |
1041 ;; Search for information in a master file. | |
1042 (if (and file (file-exists-p file)) | |
1043 (save-excursion | |
1044 (let ((buf)) | |
1045 (setq buf (create-file-buffer file)) | |
1046 (set-buffer buf)) | |
1047 (erase-buffer) | |
1048 (insert-file-contents file nil) | |
1049 (set-buffer-modified-p nil) | |
1050 (auto-save-mode nil) | |
1051 (prog1 | |
1052 (vc-parse-buffer fields rfile properties) | |
1053 (kill-buffer (current-buffer))) | |
1054 ) | |
1055 (if rfile | |
1056 (mapcar | |
1057 (function (lambda (p) (vc-file-setprop rfile p nil))) | |
1058 properties)) | |
1059 ) | |
1060 ) | |
1061 | |
1062 (defun vc-log-info (command file patterns &optional properties) | |
1063 ;; Search for information in log program output | |
1064 (if (and file (file-exists-p file)) | |
1065 (save-excursion | |
1066 (let ((buf)) | |
1067 (setq buf (get-buffer-create "*vc*")) | |
1068 (set-buffer buf)) | |
1069 (apply 'vc-do-command 0 command file nil) | |
1070 (set-buffer-modified-p nil) | |
1071 (prog1 | |
1072 (vc-parse-buffer patterns file properties) | |
1073 (kill-buffer (current-buffer)) | |
1074 ) | |
1075 ) | |
1076 (if file | |
1077 (mapcar | |
1078 (function (lambda (p) (vc-file-setprop file p nil))) | |
1079 properties)) | |
1080 ) | |
1081 ) | |
1082 | |
1083 (defun vc-locking-user (file) | |
1084 "Return the name of the person currently holding a lock on FILE. | |
1085 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
|
1086 (setq file (expand-file-name file)) ;; ??? Work around bug in 19.0.4 |
904 | 1087 (if (or (not vc-keep-workfiles) |
1088 (eq vc-mistrust-permissions 't) | |
1089 (and vc-mistrust-permissions | |
1090 (funcall vc-mistrust-permissions (vc-backend-subdirectory-name file)))) | |
1091 (vc-true-locking-user file) | |
1092 ;; This implementation assumes that any file which is under version | |
1093 ;; control and has -rw-r--r-- is locked by its owner. This is true | |
1094 ;; for both RCS and SCCS, which keep unlocked files at -r--r--r--. | |
1095 ;; We have to be careful not to exclude files with execute bits on; | |
1096 ;; scripts can be under version control too. The advantage of this | |
1097 ;; hack is that calls to the very expensive vc-fetch-properties | |
1098 ;; function only have to be made if (a) the file is locked by someone | |
1099 ;; 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
|
1100 ;; 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
|
1101 ;; write bits. |
904 | 1102 (let ((attributes (file-attributes file))) |
1103 (cond ((string-match ".r-.r-.r-." (nth 8 attributes)) | |
1104 nil) | |
1105 ((and (= (nth 2 attributes) (user-uid)) | |
1106 (string-match ".rw.r-.r-." (nth 8 attributes))) | |
1107 (user-login-name)) | |
1108 (t | |
1109 (vc-true-locking-user file)))))) | |
1110 | |
1111 (defun vc-true-locking-user (file) | |
1112 ;; The slow but reliable version | |
1113 (vc-fetch-properties file) | |
1114 (vc-file-getprop file 'vc-locking-user)) | |
1115 | |
1116 (defun vc-latest-version (file) | |
1117 ;; Return version level of the latest version of FILE | |
1118 (vc-fetch-properties file) | |
1119 (vc-file-getprop file 'vc-latest-version)) | |
1120 | |
1121 (defun vc-your-latest-version (file) | |
1122 ;; Return version level of the latest version of FILE checked in by you | |
1123 (vc-fetch-properties file) | |
1124 (vc-file-getprop file 'vc-your-latest-version)) | |
1125 | |
1126 ;; Collect back-end-dependent stuff here | |
1127 ;; | |
1128 ;; Everything eventually funnels through these functions. To implement | |
1129 ;; 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
|
1130 ;; 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
|
1131 ;; vc-master-templates in vc-hooks.el will also have to change. |
904 | 1132 |
1133 (defmacro vc-backend-dispatch (f s r) | |
1134 "Execute FORM1 or FORM2 depending on whether we're using SCCS or RCS." | |
1135 (list 'let (list (list 'type (list 'vc-backend-deduce f))) | |
1136 (list 'cond | |
1137 (list (list 'eq 'type (quote 'SCCS)) s) ;; SCCS | |
1138 (list (list 'eq 'type (quote 'RCS)) r) ;; RCS | |
1139 ))) | |
1140 | |
1141 (defun vc-lock-file (file) | |
1142 ;; Generate lock file name corresponding to FILE | |
1143 (let ((master (vc-name file))) | |
1144 (and | |
1145 master | |
1146 (string-match "\\(.*/\\)s\\.\\(.*\\)" master) | |
1147 (concat | |
1148 (substring master (match-beginning 1) (match-end 1)) | |
1149 "p." | |
1150 (substring master (match-beginning 2) (match-end 2)))))) | |
1151 | |
1152 | |
1153 (defun vc-fetch-properties (file) | |
1154 ;; Re-fetch all properties associated with the given file. | |
1155 ;; Currently these properties are: | |
1156 ;; vc-locking-user | |
1157 ;; vc-locked-version | |
1158 ;; vc-latest-version | |
1159 ;; vc-your-latest-version | |
1160 (vc-backend-dispatch | |
1161 file | |
1162 ;; SCCS | |
1163 (progn | |
1164 (vc-master-info (vc-lock-file file) | |
1165 (list | |
1166 "^[^ ]+ [^ ]+ \\([^ ]+\\)" | |
1167 "^\\([^ ]+\\)") | |
1168 file | |
1169 '(vc-locking-user vc-locked-version)) | |
1170 (vc-master-info (vc-name file) | |
1171 (list | |
1172 "^\001d D \\([^ ]+\\)" | |
1173 (concat "^\001d D \\([^ ]+\\) .* " | |
1174 (regexp-quote (user-login-name)) " ") | |
1175 ) | |
1176 file | |
1177 '(vc-latest-version vc-your-latest-version)) | |
1178 ) | |
1179 ;; RCS | |
1180 (vc-log-info "rlog" file | |
1181 (list | |
1182 "^locks: strict\n\t\\([^:]+\\)" | |
1183 "^locks: strict\n\t[^:]+: \\(.+\\)" | |
1184 "^revision[\t ]+\\([0-9.]+\\).*\ndate: \\([ /0-9:]+\\);" | |
1185 (concat | |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
1186 "^revision[\t ]+\\([0-9.]+\\)\n.*author: " |
904 | 1187 (regexp-quote (user-login-name)) |
2085
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
1188 ";")) |
904 | 1189 '(vc-locking-user vc-locked-version |
1190 vc-latest-version vc-your-latest-version)) | |
1191 )) | |
1192 | |
1193 (defun vc-backend-subdirectory-name (&optional file) | |
1194 ;; Where the master and lock files for the current directory are kept | |
1195 (symbol-name | |
1196 (or | |
1197 (and file (vc-backend-deduce file)) | |
1198 vc-default-back-end | |
1199 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS))))) | |
1200 | |
1201 (defun vc-backend-admin (file &optional rev comment) | |
1202 ;; Register a file into the version-control system | |
1203 ;; Automatically retrieves a read-only version of the file with | |
1204 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise | |
1205 ;; it deletes the workfile. | |
1206 (vc-file-clearprops file) | |
1207 (or vc-default-back-end | |
1208 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS))) | |
1209 (message "Registering %s..." file) | |
1210 (let ((backend | |
1211 (cond | |
1212 ((file-exists-p (vc-backend-subdirectory-name)) vc-default-back-end) | |
1213 ((file-exists-p "RCS") 'RCS) | |
1214 ((file-exists-p "SCCS") 'SCCS) | |
1215 (t vc-default-back-end)))) | |
1216 (cond ((eq backend 'SCCS) | |
1217 (vc-do-command 0 "admin" file ;; SCCS | |
1218 (and rev (concat "-r" rev)) | |
1219 "-fb" | |
1220 (concat "-i" file) | |
1221 (and comment (concat "-y" comment)) | |
1222 (format | |
1223 (car (rassq 'SCCS vc-master-templates)) | |
1224 (or (file-name-directory file) "") | |
1225 (file-name-nondirectory file))) | |
1226 (delete-file file) | |
1227 (if vc-keep-workfiles | |
1228 (vc-do-command 0 "get" file))) | |
1229 ((eq backend 'RCS) | |
1230 (vc-do-command 0 "ci" file ;; RCS | |
1231 (concat (if vc-keep-workfiles "-u" "-r") rev) | |
1232 (and comment (concat "-t-" comment)) | |
1233 file) | |
1234 ))) | |
1235 (message "Registering %s...done" file) | |
1236 ) | |
1237 | |
1238 (defun vc-backend-checkout (file &optional writeable rev) | |
1239 ;; Retrieve a copy of a saved version into a workfile | |
2219
a729b16f7427
(vc-version-diff): Use (message ...), not (message (format ...)).
Paul Eggert <eggert@twinsun.com>
parents:
2212
diff
changeset
|
1240 (message "Checking out %s..." file) |
904 | 1241 (vc-backend-dispatch file |
1242 (progn | |
1243 (vc-do-command 0 "get" file ;; SCCS | |
1244 (if writeable "-e") | |
1245 (and rev (concat "-r" (vc-lookup-triple file rev)))) | |
1246 ) | |
1247 (vc-do-command 0 "co" file ;; RCS | |
1248 (if writeable "-l") | |
1249 (and rev (concat "-r" rev))) | |
1250 ) | |
1251 (vc-file-setprop file 'vc-checkout-time (nth 5 (file-attributes file))) | |
1252 (message "Checking out %s...done" file) | |
1253 ) | |
1254 | |
1255 (defun vc-backend-logentry-check (file) | |
1256 (vc-backend-dispatch file | |
1257 (if (>= (- (region-end) (region-beginning)) 512) ;; SCCS | |
1258 (progn | |
1259 (goto-char 512) | |
1260 (error | |
1261 "Log must be less than 512 characters. Point is now at char 512."))) | |
1262 nil) | |
1263 ) | |
1264 | |
1265 (defun vc-backend-checkin (file &optional rev comment) | |
1266 ;; Register changes to FILE as level REV with explanatory COMMENT. | |
1267 ;; Automatically retrieves a read-only version of the file with | |
1268 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise | |
1269 ;; it deletes the workfile. | |
1270 (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
|
1271 (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
|
1272 ;; 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
|
1273 (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
|
1274 (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
|
1275 (progn |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1276 (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
|
1277 (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
|
1278 (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
|
1279 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
|
1280 (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
|
1281 (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
|
1282 ) |
ab589b426055
(vc-backend-checkin): Change buffers to get local value of vc-checkin-switches.
Roland McGrath <roland@gnu.org>
parents:
1336
diff
changeset
|
1283 (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
|
1284 (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
|
1285 (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
|
1286 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
|
1287 )) |
904 | 1288 (vc-file-setprop file 'vc-locking-user nil) |
1289 (message "Checking in %s...done" file) | |
1290 ) | |
1291 | |
1292 (defun vc-backend-revert (file) | |
1293 ;; Revert file to latest checked-in version. | |
1294 (message "Reverting %s..." file) | |
1295 (vc-backend-dispatch | |
1296 file | |
1297 (progn ;; SCCS | |
1298 (vc-do-command 0 "unget" file nil) | |
1299 (vc-do-command 0 "get" file nil)) | |
1300 (progn | |
1301 (delete-file file) ;; RCS | |
1302 (vc-do-command 0 "co" file "-u"))) | |
1303 (vc-file-setprop file 'vc-locking-user nil) | |
1304 (message "Reverting %s...done" file) | |
1305 ) | |
1306 | |
1307 (defun vc-backend-steal (file &optional rev) | |
1308 ;; Steal the lock on the current workfile. Needs RCS 5.6.2 or later for -M. | |
1309 (message "Stealing lock on %s..." file) | |
1310 (progn | |
1311 (vc-do-command 0 "unget" file "-n" (if rev (concat "-r" rev))) | |
1312 (vc-do-command 0 "get" file "-g" (if rev (concat "-r" rev))) | |
1313 ) | |
1314 (progn | |
1344
8d047d2d2592
(vc-backend-steal): Put filename after options in rcs commands.
Richard M. Stallman <rms@gnu.org>
parents:
1343
diff
changeset
|
1315 (vc-do-command 0 "rcs" "-M" (concat "-u" rev) file) |
1352
a8623439066b
(vc-backend-steal): Delete the workfile after the rcs -M -u.
Richard M. Stallman <rms@gnu.org>
parents:
1344
diff
changeset
|
1316 (delete-file file) |
1344
8d047d2d2592
(vc-backend-steal): Put filename after options in rcs commands.
Richard M. Stallman <rms@gnu.org>
parents:
1343
diff
changeset
|
1317 (vc-do-command 0 "rcs" (concat "-l" rev) file) |
904 | 1318 ) |
1319 (vc-file-setprop file 'vc-locking-user (user-login-name)) | |
1320 (message "Stealing lock on %s...done" file) | |
1321 ) | |
1322 | |
1323 (defun vc-backend-uncheck (file target) | |
1324 ;; Undo the latest checkin. Note: this code will have to get a lot | |
1325 ;; smarter when we support multiple branches. | |
1326 (message "Removing last change from %s..." file) | |
1327 (vc-backend-dispatch file | |
1328 (vc-do-command 0 "rmdel" file (concat "-r" target)) | |
1329 (vc-do-command 0 "rcs" file (concat "-o" target)) | |
1330 ) | |
1331 (message "Removing last change from %s...done" file) | |
1332 ) | |
1333 | |
1334 (defun vc-backend-print-log (file) | |
1335 ;; Print change log associated with FILE to buffer *vc*. | |
1336 (vc-do-command 0 | |
1337 (vc-backend-dispatch file "prs" "rlog") | |
1338 file) | |
1339 ) | |
1340 | |
1341 (defun vc-backend-assign-name (file name) | |
1342 ;; Assign to a FILE's latest version a given NAME. | |
1343 (vc-backend-dispatch file | |
1344 (vc-add-triple name file (vc-latest-version file)) ;; SCCS | |
1345 (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
|
1346 ) |
a5e2213a5c4a
Version 5 baseline.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2054
diff
changeset
|
1347 ) |
904 | 1348 |
1349 (defun vc-backend-diff (file oldvers &optional newvers) | |
1350 ;; Get a difference report between two versions | |
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
|
1351 (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
|
1352 (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
|
1353 (setq newvers (vc-lookup-triple file newvers))) |
904 | 1354 (apply 'vc-do-command 1 |
1355 (or (vc-backend-dispatch file "vcdiff" "rcsdiff") | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1356 (error "File %s is not under version control." file)) |
904 | 1357 file |
1358 (and oldvers (concat "-r" oldvers)) | |
1359 (and newvers (concat "-r" newvers)) | |
1360 vc-diff-options | |
1361 )) | |
1362 | |
1363 (defun vc-check-headers () | |
1364 "Check if the current file has any headers in it." | |
1365 (interactive) | |
1366 (save-excursion | |
1367 (goto-char (point-min)) | |
1368 (vc-backend-dispatch buffer-file-name | |
1369 (re-search-forward "%[MIRLBSDHTEGUYFPQCZWA]%" nil t) ;; SCCS | |
1370 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t) ;; RCS | |
1371 ) | |
1372 )) | |
1373 | |
1374 ;; Back-end-dependent stuff ends here. | |
1375 | |
1376 ;; Set up key bindings for use while editing log messages | |
1377 | |
1378 (defun vc-log-mode () | |
1379 "Minor mode for driving version-control tools. | |
1380 These bindings are added to the global keymap when you enter this mode: | |
1381 \\[vc-next-action] perform next logical version-control operation on current file | |
1382 \\[vc-register] register current file | |
1383 \\[vc-toggle-read-only] like next-action, but won't register files | |
1384 \\[vc-insert-headers] insert version-control headers in current file | |
1385 \\[vc-print-log] display change history of current file | |
1386 \\[vc-revert-buffer] revert buffer to latest version | |
1387 \\[vc-cancel-version] undo latest checkin | |
1388 \\[vc-diff] show diffs between file versions | |
1389 \\[vc-directory] show all files locked by any user in or below . | |
1390 \\[vc-update-change-log] add change log entry from recent checkins | |
1391 | |
1392 While you are entering a change log message for a version, the following | |
1393 additional bindings will be in effect. | |
1394 | |
1395 \\[vc-finish-logentry] proceed with check in, ending log message entry | |
1396 | |
1397 Whenever you do a checkin, your log comment is added to a ring of | |
1398 saved comments. These can be recalled as follows: | |
1399 | |
1400 \\[vc-next-comment] replace region with next message in comment ring | |
1401 \\[vc-previous-comment] replace region with previous message in comment ring | |
1402 \\[vc-search-comment-reverse] search backward for regexp in the comment ring | |
1403 \\[vc-search-comment-forward] search backward for regexp in the comment ring | |
1404 | |
1405 Entry to the change-log submode calls the value of text-mode-hook, then | |
1406 the value of vc-log-mode-hook. | |
1407 | |
1408 Global user options: | |
1409 vc-initial-comment If non-nil, require user to enter a change | |
1410 comment upon first checkin of the file. | |
1411 | |
1412 vc-keep-workfiles Non-nil value prevents workfiles from being | |
1413 deleted when changes are checked in | |
1414 | |
1415 vc-suppress-confirm Suppresses some confirmation prompts, | |
1416 notably for reversions. | |
1417 | |
1418 vc-diff-options A list consisting of the flags | |
1419 to be used for generating context diffs. | |
1420 | |
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
|
1421 vc-header-alist Which keywords to insert when adding headers |
904 | 1422 with \\[vc-insert-headers]. Defaults to |
1423 '(\"\%\W\%\") under SCCS, '(\"\$Id\$\") under RCS. | |
1424 | |
1425 vc-static-header-alist By default, version headers inserted in C files | |
1426 get stuffed in a static string area so that | |
1427 ident(RCS) or what(SCCS) can see them in the | |
1428 compiled object code. You can override this | |
1429 by setting this variable to nil, or change | |
1430 the header template by changing it. | |
1431 | |
1432 vc-command-messages if non-nil, display run messages from the | |
1433 actual version-control utilities (this is | |
1434 intended primarily for people hacking vc | |
1435 itself). | |
1436 " | |
1437 (interactive) | |
1438 (set-syntax-table text-mode-syntax-table) | |
1439 (use-local-map vc-log-entry-mode) | |
1440 (setq local-abbrev-table text-mode-abbrev-table) | |
1441 (setq major-mode 'vc-log-mode) | |
1442 (setq mode-name "VC-Log") | |
1443 (make-local-variable 'vc-log-file) | |
1444 (make-local-variable 'vc-log-version) | |
1445 (set-buffer-modified-p nil) | |
1446 (setq buffer-file-name nil) | |
1447 (run-hooks 'text-mode-hook 'vc-log-mode-hook) | |
1448 ) | |
1449 | |
1450 ;; Initialization code, to be done just once at load-time | |
1451 (if vc-log-entry-mode | |
1452 nil | |
1453 (setq vc-log-entry-mode (make-sparse-keymap)) | |
1454 (define-key vc-log-entry-mode "\M-n" 'vc-next-comment) | |
1455 (define-key vc-log-entry-mode "\M-p" 'vc-previous-comment) | |
1456 (define-key vc-log-entry-mode "\M-r" 'vc-comment-search-backward) | |
1457 (define-key vc-log-entry-mode "\M-s" 'vc-comment-search-forward) | |
1458 (define-key vc-log-entry-mode "\C-c\C-c" 'vc-finish-logentry) | |
1459 ) | |
1460 | |
1461 ;;; These things should probably be generally available | |
1462 | |
1463 (defun vc-shrink-to-fit () | |
1464 "Shrink a window vertically until it's just large enough to contain its text" | |
1465 (let ((minsize (1+ (count-lines (point-min) (point-max))))) | |
1466 (if (< minsize (window-height)) | |
1467 (let ((window-min-height 2)) | |
1468 (shrink-window (- (window-height) minsize)))))) | |
1469 | |
2054
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1470 (defun vc-file-tree-walk (func &rest args) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1471 "Walk recursively through default directory, |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1472 invoking FUNC f ARGS on all non-directory files f underneath it." |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1473 (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
|
1474 (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
|
1475 |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1476 (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
|
1477 (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
|
1478 (apply func file args) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1479 (message "Traversing directory %s..." file) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1480 (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
|
1481 (mapcar |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1482 (function |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1483 (lambda (f) (or |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1484 (string-equal f ".") |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1485 (string-equal f "..") |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1486 (let ((dirf (concat dir f))) |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1487 (or |
341337259785
(vc-update-change-log): Check that ChangeLog is writable
Paul Eggert <eggert@twinsun.com>
parents:
2041
diff
changeset
|
1488 (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
|
1489 (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
|
1490 (directory-files dir))))) |
904 | 1491 |
1492 (provide 'vc) | |
1493 | |
1494 ;;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE | |
1495 ;;; | |
1496 ;;; These may be useful to anyone who has to debug or extend the package. | |
1497 ;;; | |
1498 ;;; A fundamental problem in VC is that there are time windows between | |
1499 ;;; vc-next-action's computations of the file's version-control state and | |
1500 ;;; the actions that change it. This is a window open to lossage in a | |
1501 ;;; multi-user environment; someone else could nip in and change the state | |
1502 ;;; of the master during it. | |
1503 ;;; | |
1504 ;;; The performance problem is that rlog/prs calls are very expensive; we want | |
1505 ;;; to avoid them as much as possible. | |
1506 ;;; | |
1507 ;;; ANALYSIS: | |
1508 ;;; | |
1509 ;;; The performance problem, it turns out, simplifies in practice to the | |
1510 ;;; problem of making vc-locking-user fast. The two other functions that call | |
1511 ;;; prs/rlog will not be so commonly used that the slowdown is a problem; one | |
1512 ;;; makes snapshots, the other deletes the calling user's last change in the | |
1513 ;;; master. | |
1514 ;;; | |
1515 ;;; The race condition implies that we have to either (a) lock the master | |
1516 ;;; during the entire execution of vc-next-action, or (b) detect and | |
1517 ;;; recover from errors resulting from dispatch on an out-of-date state. | |
1518 ;;; | |
1519 ;;; Alternative (a) appears to be unfeasible. The problem is that we can't | |
1520 ;;; guarantee that the lock will ever be removed. Suppose a user starts a | |
1521 ;;; checkin, the change message buffer pops up, and the user, having wandered | |
1522 ;;; off to do something else, simply forgets about it? | |
1523 ;;; | |
1524 ;;; Alternative (b), on the other hand, works well with a cheap way to speed up | |
1525 ;;; vc-locking-user. Usually, if a file is registered, we can read its locked/ | |
1526 ;;; unlocked state and its current owner from its permissions. | |
1527 ;;; | |
1528 ;;; This shortcut will fail if someone has manually changed the workfile's | |
1529 ;;; permissions; also if developers are munging the workfile in several | |
1530 ;;; directories, with symlinks to a master (in this latter case, the | |
1531 ;;; permissions shortcut will fail to detect a lock asserted from another | |
1532 ;;; directory). | |
1533 ;;; | |
1534 ;;; Note that these cases correspond exactly to the errors which could happen | |
1535 ;;; because of a competing checkin/checkout race in between two instances of | |
1536 ;;; vc-next-action. | |
1537 ;;; | |
1538 ;;; For VC's purposes, a workfile/master pair may have the following states: | |
1539 ;;; | |
1540 ;;; A. Unregistered. There is a workfile, there is no master. | |
1541 ;;; | |
1542 ;;; B. Registered and not locked by anyone. | |
1543 ;;; | |
1544 ;;; C. Locked by calling user and unchanged. | |
1545 ;;; | |
1546 ;;; D. Locked by the calling user and changed. | |
1547 ;;; | |
1548 ;;; E. Locked by someone other than the calling user. | |
1549 ;;; | |
1550 ;;; This makes for 25 states and 20 error conditions. Here's the matrix: | |
1551 ;;; | |
1552 ;;; VC's idea of state | |
1553 ;;; | | |
1554 ;;; V Actual state RCS action SCCS action Effect | |
1555 ;;; A B C D E | |
1556 ;;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin | |
1557 ;;; B 5 . 6 7 8 co -l get -e checkout | |
1558 ;;; C 9 10 . 11 12 co -u unget; get revert | |
1559 ;;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin | |
1560 ;;; E 17 18 19 20 . rcs -u -M ; rcs -l unget -n ; get -g steal lock | |
1561 ;;; | |
1562 ;;; All commands take the master file name as a last argument (not shown). | |
1563 ;;; | |
1564 ;;; In the discussion below, a "self-race" is a pathological situation in | |
1565 ;;; which VC operations are being attempted simultaneously by two or more | |
1566 ;;; Emacsen running under the same username. | |
1567 ;;; | |
1568 ;;; The vc-next-action code has the following windows: | |
1569 ;;; | |
1570 ;;; Window P: | |
1571 ;;; Between the check for existence of a master file and the call to | |
1572 ;;; admin/checkin in vc-buffer-admin (apparent state A). This window may | |
1573 ;;; never close if the initial-comment feature is on. | |
1574 ;;; | |
1575 ;;; Window Q: | |
1576 ;;; Between the call to vc-workfile-unchanged-p in and the immediately | |
1577 ;;; following revert (apparent state C). | |
1578 ;;; | |
1579 ;;; Window R: | |
1580 ;;; Between the call to vc-workfile-unchanged-p in and the following | |
1581 ;;; checkin (apparent state D). This window may never close. | |
1582 ;;; | |
1583 ;;; Window S: | |
1584 ;;; Between the unlock and the immediately following checkout during a | |
1585 ;;; revert operation (apparent state C). Included in window Q. | |
1586 ;;; | |
1587 ;;; Window T: | |
1588 ;;; Between vc-locking-user and the following checkout (apparent state B). | |
1589 ;;; | |
1590 ;;; Window U: | |
1591 ;;; Between vc-locking-user and the following revert (apparent state C). | |
1592 ;;; Includes windows Q and S. | |
1593 ;;; | |
1594 ;;; Window V: | |
1595 ;;; Between vc-locking-user and the following checkin (apparent state | |
1596 ;;; D). This window may never be closed if the user fails to complete the | |
1597 ;;; checkin message. Includes window R. | |
1598 ;;; | |
1599 ;;; Window W: | |
1600 ;;; Between vc-locking-user and the following steal-lock (apparent | |
1601 ;;; state E). This window may never cloce if the user fails to complete | |
1602 ;;; the steal-lock message. Includes window X. | |
1603 ;;; | |
1604 ;;; Window X: | |
1605 ;;; Between the unlock and the immediately following re-lock during a | |
1606 ;;; steal-lock operation (apparent state E). This window may never cloce | |
1607 ;;; if the user fails to complete the steal-lock message. | |
1608 ;;; | |
1609 ;;; Errors: | |
1610 ;;; | |
1611 ;;; Apparent state A --- | |
1612 ;;; | |
1613 ;;; 1. File looked unregistered but is actually registered and not locked. | |
1614 ;;; | |
1615 ;;; Potential cause: someone else's admin during window P, with | |
1616 ;;; caller's admin happening before their checkout. | |
1617 ;;; | |
1618 ;;; RCS: ci will fail with a "no lock set by <user>" message. | |
1619 ;;; SCCS: admin will fail with error (ad19). | |
1620 ;;; | |
1621 ;;; We can let these errors be passed up to the user. | |
1622 ;;; | |
1623 ;;; 2. File looked unregistered but is actually locked by caller, unchanged. | |
1624 ;;; | |
1625 ;;; Potential cause: self-race during window P. | |
1626 ;;; | |
1627 ;;; RCS: will revert the file to the last saved version and unlock it. | |
1628 ;;; SCCS: will fail with error (ad19). | |
1629 ;;; | |
1630 ;;; Either of these consequences is acceptable. | |
1631 ;;; | |
1632 ;;; 3. File looked unregistered but is actually locked by caller, changed. | |
1633 ;;; | |
1634 ;;; Potential cause: self-race during window P. | |
1635 ;;; | |
1636 ;;; RCS: will register the caller's workfile as a delta with a | |
1637 ;;; null change comment (the -t- switch will be ignored). | |
1638 ;;; SCCS: will fail with error (ad19). | |
1639 ;;; | |
1640 ;;; 4. File looked unregistered but is locked by someone else. | |
1641 ;;; | |
1642 ;;; Potential cause: someone else's admin during window P, with | |
1643 ;;; caller's admin happening *after* their checkout. | |
1644 ;;; | |
1645 ;;; RCS: will fail with a "no lock set by <user>" message. | |
1646 ;;; SCCS: will fail with error (ad19). | |
1647 ;;; | |
1648 ;;; We can let these errors be passed up to the user. | |
1649 ;;; | |
1650 ;;; Apparent state B --- | |
1651 ;;; | |
1652 ;;; 5. File looked registered and not locked, but is actually unregistered. | |
1653 ;;; | |
1654 ;;; Potential cause: master file got nuked during window P. | |
1655 ;;; | |
1656 ;;; RCS: will fail with "RCS/<file>: No such file or directory" | |
1657 ;;; SCCS: will fail with error ut4. | |
1658 ;;; | |
1659 ;;; We can let these errors be passed up to the user. | |
1660 ;;; | |
1661 ;;; 6. File looked registered and not locked, but is actually locked by the | |
1662 ;;; calling user and unchanged. | |
1663 ;;; | |
1664 ;;; Potential cause: self-race during window T. | |
1665 ;;; | |
1666 ;;; RCS: in the same directory as the previous workfile, co -l will fail | |
1667 ;;; with "co error: writable foo exists; checkout aborted". In any other | |
1668 ;;; directory, checkout will succeed. | |
1669 ;;; SCCS: will fail with ge17. | |
1670 ;;; | |
1671 ;;; Either of these consequences is acceptable. | |
1672 ;;; | |
1673 ;;; 7. File looked registered and not locked, but is actually locked by the | |
1674 ;;; calling user and changed. | |
1675 ;;; | |
1676 ;;; As case 6. | |
1677 ;;; | |
1678 ;;; 8. File looked registered and not locked, but is actually locked by another | |
1679 ;;; user. | |
1680 ;;; | |
1681 ;;; Potential cause: someone else checks it out during window T. | |
1682 ;;; | |
1683 ;;; RCS: co error: revision 1.3 already locked by <user> | |
1684 ;;; SCCS: fails with ge4 (in directory) or ut7 (outside it). | |
1685 ;;; | |
1686 ;;; We can let these errors be passed up to the user. | |
1687 ;;; | |
1688 ;;; Apparent state C --- | |
1689 ;;; | |
1690 ;;; 9. File looks locked by calling user and unchanged, but is unregistered. | |
1691 ;;; | |
1692 ;;; As case 5. | |
1693 ;;; | |
1694 ;;; 10. File looks locked by calling user and unchanged, but is actually not | |
1695 ;;; locked. | |
1696 ;;; | |
1697 ;;; Potential cause: a self-race in window U, or by the revert's | |
1698 ;;; landing during window X of some other user's steal-lock or window S | |
1699 ;;; of another user's revert. | |
1700 ;;; | |
1701 ;;; RCS: succeeds, refreshing the file from the identical version in | |
1702 ;;; the master. | |
1703 ;;; SCCS: fails with error ut4 (p file nonexistent). | |
1704 ;;; | |
1705 ;;; Either of these consequences is acceptable. | |
1706 ;;; | |
1707 ;;; 11. File is locked by calling user. It looks unchanged, but is actually | |
1708 ;;; changed. | |
1709 ;;; | |
1710 ;;; Potential cause: the file would have to be touched by a self-race | |
1711 ;;; during window Q. | |
1712 ;;; | |
1713 ;;; The revert will succeed, removing whatever changes came with | |
1714 ;;; the touch. It is theoretically possible that work could be lost. | |
1715 ;;; | |
1716 ;;; 12. File looks like it's locked by the calling user and unchanged, but | |
1717 ;;; it's actually locked by someone else. | |
1718 ;;; | |
1719 ;;; Potential cause: a steal-lock in window V. | |
1720 ;;; | |
1721 ;;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u | |
1722 ;;; SCCS: fails with error un2 | |
1723 ;;; | |
1724 ;;; We can pass these errors up to the user. | |
1725 ;;; | |
1726 ;;; Apparent state D --- | |
1727 ;;; | |
1728 ;;; 13. File looks like it's locked by the calling user and changed, but it's | |
1729 ;;; actually unregistered. | |
1730 ;;; | |
1731 ;;; Potential cause: master file got nuked during window P. | |
1732 ;;; | |
1733 ;;; RCS: Checks in the user's version as an initial delta. | |
1734 ;;; SCCS: will fail with error ut4. | |
1735 ;;; | |
1736 ;;; This case is kind of nasty. It means VC may fail to detect the | |
1737 ;;; loss of previous version information. | |
1738 ;;; | |
1739 ;;; 14. File looks like it's locked by the calling user and changed, but it's | |
1740 ;;; actually unlocked. | |
1741 ;;; | |
1742 ;;; Potential cause: self-race in window V, or the checkin happening | |
1743 ;;; during the window X of someone else's steal-lock or window S of | |
1744 ;;; someone else's revert. | |
1745 ;;; | |
1746 ;;; RCS: ci will fail with "no lock set by <user>". | |
1747 ;;; SCCS: delta will fail with error ut4. | |
1748 ;;; | |
1749 ;;; 15. File looks like it's locked by the calling user and changed, but it's | |
1750 ;;; actually locked by the calling user and unchanged. | |
1751 ;;; | |
1752 ;;; Potential cause: another self-race --- a whole checkin/checkout | |
1753 ;;; sequence by the calling user would have to land in window R. | |
1754 ;;; | |
1755 ;;; SCCS: checks in a redundant delta and leaves the file unlocked as usual. | |
1756 ;;; RCS: reverts to the file state as of the second user's checkin, leaving | |
1757 ;;; the file unlocked. | |
1758 ;;; | |
1759 ;;; It is theoretically possible that work could be lost under RCS. | |
1760 ;;; | |
1761 ;;; 16. File looks like it's locked by the calling user and changed, but it's | |
1762 ;;; actually locked by a different user. | |
1763 ;;; | |
1764 ;;; RCS: ci error: no lock set by <user> | |
1765 ;;; SCCS: unget will fail with error un2 | |
1766 ;;; | |
1767 ;;; We can pass these errors up to the user. | |
1768 ;;; | |
1769 ;;; Apparent state E --- | |
1770 ;;; | |
1771 ;;; 17. File looks like it's locked by some other user, but it's actually | |
1772 ;;; unregistered. | |
1773 ;;; | |
1774 ;;; As case 13. | |
1775 ;;; | |
1776 ;;; 18. File looks like it's locked by some other user, but it's actually | |
1777 ;;; unlocked. | |
1778 ;;; | |
1779 ;;; Potential cause: someone released a lock during window W. | |
1780 ;;; | |
1781 ;;; RCS: The calling user will get the lock on the file. | |
1782 ;;; SCCS: unget -n will fail with cm4. | |
1783 ;;; | |
1784 ;;; Either of these consequences will be OK. | |
1785 ;;; | |
1786 ;;; 19. File looks like it's locked by some other user, but it's actually | |
1787 ;;; locked by the calling user and unchanged. | |
1788 ;;; | |
1789 ;;; Potential cause: the other user relinquishing a lock followed by | |
1790 ;;; a self-race, both in window W. | |
1791 ;;; | |
1792 ;;; Under both RCS and SCCS, both unlock and lock will succeed, making | |
1793 ;;; the sequence a no-op. | |
1794 ;;; | |
1795 ;;; 20. File looks like it's locked by some other user, but it's actually | |
1796 ;;; locked by the calling user and changed. | |
1797 ;;; | |
1798 ;;; As case 19. | |
1799 ;;; | |
1800 ;;; PROBLEM CASES: | |
1801 ;;; | |
1802 ;;; In order of decreasing severity: | |
1803 ;;; | |
1804 ;;; Cases 11 and 15 under RCS are the only one that potentially lose work. | |
1805 ;;; They would require a self-race for this to happen. | |
1806 ;;; | |
1807 ;;; Case 13 in RCS loses information about previous deltas, retaining | |
1808 ;;; only the information in the current workfile. This can only happen | |
1809 ;;; if the master file gets nuked in window P. | |
1810 ;;; | |
1811 ;;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with | |
1812 ;;; no change comment in the master. This would require a self-race in | |
1813 ;;; window P or R respectively. | |
1814 ;;; | |
1815 ;;; Cases 2, 10, 19 and 20 do extra work, but make no changes. | |
1816 ;;; | |
1817 ;;; Unfortunately, it appears to me that no recovery is possible in these | |
1818 ;;; cases. They don't yield error messages, so there's no way to tell that | |
1819 ;;; a race condition has occurred. | |
1820 ;;; | |
1821 ;;; All other cases don't change either the workfile or the master, and | |
1822 ;;; trigger command errors which the user will see. | |
1823 ;;; | |
1824 ;;; Thus, there is no explicit recovery code. | |
1825 | |
1826 ;;; vc.el ends here |