Mercurial > emacs
annotate lisp/vc-sccs.el @ 111365:0c4c440f303c
Backport r100459 from trunk
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Thu, 04 Nov 2010 15:46:30 -0400 |
parents | 1d1d5d9bd884 |
children | 1918e70c8b37 376148b31b5e |
rev | line source |
---|---|
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
1 ;;; vc-sccs.el --- support for SCCS version-control |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
106815 | 4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
92167 | 5 ;; Free Software Foundation, Inc. |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
6 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
7 ;; Author: FSF (see vc.el for full credits) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
8 ;; Maintainer: Andre Spiegel <spiegel@gnu.org> |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
9 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
10 ;; This file is part of GNU Emacs. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
11 |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
13 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
15 ;; (at your option) any later version. |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
16 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
20 ;; GNU General Public License for more details. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
21 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
22 ;; You should have received a copy of the GNU General Public License |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
24 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
25 ;;; Commentary: |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
26 |
105590
7e0a5f5d7775
* vc.el: Move comments about RCS and SCCS ...
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105170
diff
changeset
|
27 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff |
7e0a5f5d7775
* vc.el: Move comments about RCS and SCCS ...
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105170
diff
changeset
|
28 ;; to be installed somewhere on Emacs's path for executables. |
7e0a5f5d7775
* vc.el: Move comments about RCS and SCCS ...
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105170
diff
changeset
|
29 ;; |
7e0a5f5d7775
* vc.el: Move comments about RCS and SCCS ...
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105170
diff
changeset
|
30 |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
31 ;;; Code: |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
32 |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48967
diff
changeset
|
33 (eval-when-compile |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
34 (require 'vc)) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
35 |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48967
diff
changeset
|
36 ;;; |
33560 | 37 ;;; Customization options |
38 ;;; | |
39 | |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
40 ;; ;; Maybe a better solution is to not use "get" but "sccs get". |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
41 ;; (defcustom vc-sccs-path |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
42 ;; (let ((path ())) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
43 ;; (dolist (dir '("/usr/sccs" "/usr/lib/sccs" "/usr/libexec/sccs")) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
44 ;; (if (file-directory-p dir) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
45 ;; (push dir path))) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
46 ;; path) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
47 ;; "List of extra directories to search for SCCS commands." |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
48 ;; :type '(repeat directory) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
49 ;; :group 'vc) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
50 |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
51 (defcustom vc-sccs-register-switches nil |
100205
569bd4097407
(vc-sccs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100184
diff
changeset
|
52 "Switches for registering a file in SCCS. |
31477 | 53 A string or list of strings passed to the checkin program by |
100205
569bd4097407
(vc-sccs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100184
diff
changeset
|
54 \\[vc-register]. If nil, use the value of `vc-register-switches'. |
569bd4097407
(vc-sccs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100184
diff
changeset
|
55 If t, use no switches." |
569bd4097407
(vc-sccs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100184
diff
changeset
|
56 :type '(choice (const :tag "Unspecified" nil) |
569bd4097407
(vc-sccs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100184
diff
changeset
|
57 (const :tag "None" t) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
58 (string :tag "Argument String") |
100205
569bd4097407
(vc-sccs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100184
diff
changeset
|
59 (repeat :tag "Argument List" :value ("") string)) |
31477 | 60 :version "21.1" |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
61 :group 'vc) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
62 |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
63 (defcustom vc-sccs-diff-switches nil |
100184
c3cf5c74dfe1
(vc-sccs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
64 "String or list of strings specifying switches for SCCS diff under VC. |
c3cf5c74dfe1
(vc-sccs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
65 If nil, use the value of `vc-diff-switches'. If t, use no switches." |
c3cf5c74dfe1
(vc-sccs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
66 :type '(choice (const :tag "Unspecified" nil) |
c3cf5c74dfe1
(vc-sccs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
67 (const :tag "None" t) |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
68 (string :tag "Argument String") |
100184
c3cf5c74dfe1
(vc-sccs-diff-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
69 (repeat :tag "Argument List" :value ("") string)) |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
70 :version "21.1" |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
71 :group 'vc) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
72 |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
73 (defcustom vc-sccs-header (or (cdr (assoc 'SCCS vc-header-alist)) '("%W%")) |
100171 | 74 "Header keywords to be inserted by `vc-insert-headers'." |
35179 | 75 :type '(repeat string) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
76 :group 'vc) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
77 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
78 ;;;###autoload |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
79 (defcustom vc-sccs-master-templates |
105939
a0f778f4a995
* term/x-win.el (x-gtk-stock-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105590
diff
changeset
|
80 (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) |
100171 | 81 "Where to look for SCCS master files. |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
82 For a description of possible values, see `vc-check-master-templates'." |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
83 :type '(choice (const :tag "Use standard SCCS file names" |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
84 ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
85 (repeat :tag "User-specified" |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
86 (choice string |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
87 function))) |
31477 | 88 :version "21.1" |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
89 :group 'vc) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
90 |
33560 | 91 |
92 ;;; | |
93 ;;; Internal variables | |
94 ;;; | |
95 | |
31404
f2ab9420390f
2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31385
diff
changeset
|
96 (defconst vc-sccs-name-assoc-file "VC-names") |
f2ab9420390f
2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31385
diff
changeset
|
97 |
33560 | 98 |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
99 ;;; Properties of the backend |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
100 |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
101 (defun vc-sccs-revision-granularity () 'file) |
94563
a0bb8ca25a33
Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94522
diff
changeset
|
102 (defun vc-sccs-checkout-model (files) 'locking) |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
103 |
33560 | 104 ;;; |
105 ;;; State-querying functions | |
106 ;;; | |
107 | |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
108 ;; The autoload cookie below places vc-sccs-registered directly into |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
109 ;; loaddefs.el, so that vc-sccs.el does not need to be loaded for |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
110 ;; every file that is visited. The definition is repeated below |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
111 ;; so that Help and etags can find it. |
48281
b8e04fa0ebdf
(vc-sccs-registered): Improve comment.
André Spiegel <spiegel@gnu.org>
parents:
48264
diff
changeset
|
112 |
b8e04fa0ebdf
(vc-sccs-registered): Improve comment.
André Spiegel <spiegel@gnu.org>
parents:
48264
diff
changeset
|
113 ;;;###autoload (defun vc-sccs-registered(f) (vc-default-registered 'SCCS f)) |
48264
63fc09a69c40
(vc-sccs-registered): Handle the autoload cookie so that the
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47806
diff
changeset
|
114 (defun vc-sccs-registered (f) (vc-default-registered 'SCCS f)) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
115 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
116 (defun vc-sccs-state (file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
117 "SCCS-specific function to compute the version control state." |
94521
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
118 (if (not (vc-sccs-registered file)) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
119 'unregistered |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
120 (with-temp-buffer |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
121 (if (vc-insert-file (vc-sccs-lock-file file)) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
122 (let* ((locks (vc-sccs-parse-locks)) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
123 (working-revision (vc-working-revision file)) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
124 (locking-user (cdr (assoc working-revision locks)))) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
125 (if (not locking-user) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
126 (if (vc-workfile-unchanged-p file) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
127 'up-to-date |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
128 'unlocked-changes) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
129 (if (string= locking-user (vc-user-login-name file)) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
130 'edited |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
131 locking-user))) |
2a61c5f918a5
Change 'needs-patch to 'needs-update.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94190
diff
changeset
|
132 'up-to-date)))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
133 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
134 (defun vc-sccs-state-heuristic (file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
135 "SCCS-specific state heuristic." |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
136 (if (not (vc-mistrust-permissions file)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
137 ;; This implementation assumes that any file which is under version |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
138 ;; control and has -rw-r--r-- is locked by its owner. This is true |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
139 ;; for both RCS and SCCS, which keep unlocked files at -r--r--r--. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
140 ;; We have to be careful not to exclude files with execute bits on; |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
141 ;; scripts can be under version control too. Also, we must ignore the |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
142 ;; group-read and other-read bits, since paranoid users turn them off. |
68333
ccad9ac08a6d
(vc-sccs-state-heuristic): Use file-attributes with ID-FORMAT
André Spiegel <spiegel@gnu.org>
parents:
66608
diff
changeset
|
143 (let* ((attributes (file-attributes file 'string)) |
ccad9ac08a6d
(vc-sccs-state-heuristic): Use file-attributes with ID-FORMAT
André Spiegel <spiegel@gnu.org>
parents:
66608
diff
changeset
|
144 (owner-name (nth 2 attributes)) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
145 (permissions (nth 8 attributes))) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
146 (if (string-match ".r-..-..-." permissions) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
147 'up-to-date |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
148 (if (string-match ".rw..-..-." permissions) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
149 (if (file-ownership-preserved-p file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
150 'edited |
68333
ccad9ac08a6d
(vc-sccs-state-heuristic): Use file-attributes with ID-FORMAT
André Spiegel <spiegel@gnu.org>
parents:
66608
diff
changeset
|
151 owner-name) |
52179
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
152 ;; Strange permissions. |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
153 ;; Fall through to real state computation. |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
154 (vc-sccs-state file)))) |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
155 (vc-sccs-state file))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
156 |
94003
2ecb2ea8d5b5
Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93677
diff
changeset
|
157 (defun vc-sccs-dir-status (dir update-function) |
94835
0f7a18ff94d6
* vc-sccs.el (vc-sccs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94806
diff
changeset
|
158 ;; FIXME: this function should be rewritten, using `vc-expand-dirs' |
0f7a18ff94d6
* vc-sccs.el (vc-sccs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94806
diff
changeset
|
159 ;; is not TRTD because it returns files from multiple backends. |
0f7a18ff94d6
* vc-sccs.el (vc-sccs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94806
diff
changeset
|
160 ;; It should also return 'unregistered files. |
0f7a18ff94d6
* vc-sccs.el (vc-sccs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94806
diff
changeset
|
161 |
0f7a18ff94d6
* vc-sccs.el (vc-sccs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94806
diff
changeset
|
162 ;; Doing lots of individual VC-state calls is painful, but |
94522
a69dcc2c42ae
Remove some XXX comments no longer needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94521
diff
changeset
|
163 ;; there is no better option in SCCS-land. |
93677
112903000f93
* vc-rcs.el (vc-rcs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92195
diff
changeset
|
164 (let ((flist (vc-expand-dirs (list dir))) |
112903000f93
* vc-rcs.el (vc-rcs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92195
diff
changeset
|
165 (result nil)) |
112903000f93
* vc-rcs.el (vc-rcs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92195
diff
changeset
|
166 (dolist (file flist) |
112903000f93
* vc-rcs.el (vc-rcs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92195
diff
changeset
|
167 (let ((state (vc-state file)) |
112903000f93
* vc-rcs.el (vc-rcs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92195
diff
changeset
|
168 (frel (file-relative-name file))) |
94835
0f7a18ff94d6
* vc-sccs.el (vc-sccs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94806
diff
changeset
|
169 (when (and (eq (vc-backend file) 'SCCS) |
0f7a18ff94d6
* vc-sccs.el (vc-sccs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94806
diff
changeset
|
170 (not (eq state 'up-to-date))) |
0f7a18ff94d6
* vc-sccs.el (vc-sccs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94806
diff
changeset
|
171 (push (list frel state) result)))) |
94003
2ecb2ea8d5b5
Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93677
diff
changeset
|
172 (funcall update-function result))) |
93677
112903000f93
* vc-rcs.el (vc-rcs-dir-status):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92195
diff
changeset
|
173 |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
82140
diff
changeset
|
174 (defun vc-sccs-working-revision (file) |
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
82140
diff
changeset
|
175 "SCCS-specific version of `vc-working-revision'." |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
176 (with-temp-buffer |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
177 ;; The working revision is always the latest revision number. |
52179
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
178 ;; To find this number, search the entire delta table, |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
179 ;; rather than just the first entry, because the |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
180 ;; first entry might be a deleted ("R") revision. |
52179
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
181 (vc-insert-file (vc-name file) "^\001e\n\001[^s]") |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
182 (vc-parse-buffer "^\001d D \\([^ ]+\\)" 1))) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
183 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
184 (defun vc-sccs-workfile-unchanged-p (file) |
56953 | 185 "SCCS-specific implementation of `vc-workfile-unchanged-p'." |
94847
5e64dca662f0
Remove assumption about what nil means as a first arument to vc-do-command.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94835
diff
changeset
|
186 (zerop (apply 'vc-do-command "*vc*" 1 "vcdiff" (vc-name file) |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
187 (list "--brief" "-q" |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
82140
diff
changeset
|
188 (concat "-r" (vc-working-revision file)))))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
189 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
190 |
33560 | 191 ;;; |
192 ;;; State-changing functions | |
193 ;;; | |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
194 |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
195 (defun vc-sccs-do-command (buffer okstatus command file-or-list &rest flags) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
196 ;; (let ((load-path (append vc-sccs-path load-path))) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
197 ;; (apply 'vc-do-command buffer okstatus command file-or-list flags)) |
94847
5e64dca662f0
Remove assumption about what nil means as a first arument to vc-do-command.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94835
diff
changeset
|
198 (apply 'vc-do-command (or buffer "*vc*") okstatus "sccs" file-or-list command flags)) |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
199 |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
200 (defun vc-sccs-create-repo () |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
201 "Create a new SCCS repository." |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
202 ;; SCCS is totally file-oriented, so all we have to do is make the directory |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
203 (make-directory "SCCS")) |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
204 |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
205 (defun vc-sccs-register (files &optional rev comment) |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
206 "Register FILES into the SCCS version-control system. |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
207 REV is the optional revision number for the file. COMMENT can be used |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
208 to provide an initial description of FILES. |
100205
569bd4097407
(vc-sccs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100184
diff
changeset
|
209 Passes either `vc-sccs-register-switches' or `vc-register-switches' |
569bd4097407
(vc-sccs-register-switches): Doc fix. Add t as option.
Glenn Morris <rgm@gnu.org>
parents:
100184
diff
changeset
|
210 to the SCCS command. |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
211 |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
212 Automatically retrieve a read-only version of the files with keywords |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
213 expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile." |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
214 (dolist (file files) |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
215 (let* ((dirname (or (file-name-directory file) "")) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
216 (basename (file-name-nondirectory file)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
217 (project-file (vc-sccs-search-project-dir dirname basename))) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
218 (let ((vc-name |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
219 (or project-file |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
220 (format (car vc-sccs-master-templates) dirname basename)))) |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
221 (apply 'vc-sccs-do-command nil 0 "admin" vc-name |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
222 (and rev (not (string= rev "")) (concat "-r" rev)) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
223 "-fb" |
37051
92a0a59a48ee
(vc-sccs-register): Use relative file names.
André Spiegel <spiegel@gnu.org>
parents:
36713
diff
changeset
|
224 (concat "-i" (file-relative-name file)) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
225 (and comment (concat "-y" comment)) |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
226 (vc-switches 'SCCS 'register))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
227 (delete-file file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
228 (if vc-keep-workfiles |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
229 (vc-sccs-do-command nil 0 "get" (vc-name file)))))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
230 |
33560 | 231 (defun vc-sccs-responsible-p (file) |
232 "Return non-nil if SCCS thinks it would be responsible for registering FILE." | |
233 ;; TODO: check for all the patterns in vc-sccs-master-templates | |
234 (or (file-directory-p (expand-file-name "SCCS" (file-name-directory file))) | |
235 (stringp (vc-sccs-search-project-dir (or (file-name-directory file) "") | |
236 (file-name-nondirectory file))))) | |
237 | |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
238 (defun vc-sccs-checkin (files rev comment) |
33560 | 239 "SCCS-specific version of `vc-backend-checkin'." |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
240 (dolist (file (vc-expand-dirs files)) |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
241 (apply 'vc-sccs-do-command nil 0 "delta" (vc-name file) |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
242 (if rev (concat "-r" rev)) |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
243 (concat "-y" comment) |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
244 (vc-switches 'SCCS 'checkin)) |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
245 (if vc-keep-workfiles |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
246 (vc-sccs-do-command nil 0 "get" (vc-name file))))) |
33560 | 247 |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
82140
diff
changeset
|
248 (defun vc-sccs-find-revision (file rev buffer) |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
249 (apply 'vc-sccs-do-command |
47798
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
250 buffer 0 "get" (vc-name file) |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
251 "-s" ;; suppress diagnostic output |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
252 "-p" |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
253 (and rev |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
254 (concat "-r" |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
255 (vc-sccs-lookup-triple file rev))) |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
256 (vc-switches 'SCCS 'checkout))) |
47798
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
257 |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
258 (defun vc-sccs-checkout (file &optional editable rev) |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
259 "Retrieve a copy of a saved revision of SCCS controlled FILE. |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
260 If FILE is a directory, all version-controlled files beneath are checked out. |
35134
f7a5d39c26f0
(vc-sccs-latest-on-branch-p): Removed.
André Spiegel <spiegel@gnu.org>
parents:
33560
diff
changeset
|
261 EDITABLE non-nil means that the file should be writable and |
47798
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
262 locked. REV is the revision to check out." |
95039
939006f4843e
(vc-sccs-create-tag): Fix typo in error message and pass backend arg.
Juanma Barranquero <lekktu@gmail.com>
parents:
95020
diff
changeset
|
263 (if (file-directory-p file) |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
264 (mapc 'vc-sccs-checkout (vc-expand-dirs (list file))) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
265 (let ((file-buffer (get-file-buffer file)) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
266 switches) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
267 (message "Checking out %s..." file) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
268 (save-excursion |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
269 ;; Change buffers to get local value of vc-checkout-switches. |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
270 (if file-buffer (set-buffer file-buffer)) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
271 (setq switches (vc-switches 'SCCS 'checkout)) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
272 ;; Save this buffer's default-directory |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
273 ;; and use save-excursion to make sure it is restored |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
274 ;; in the same buffer it was saved in. |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
275 (let ((default-directory default-directory)) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
276 (save-excursion |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
277 ;; Adjust the default-directory so that the check-out creates |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
278 ;; the file in the right place. |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
279 (setq default-directory (file-name-directory file)) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
280 |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
281 (and rev (or (string= rev "") |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
282 (not (stringp rev))) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
283 (setq rev nil)) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
284 (apply 'vc-sccs-do-command nil 0 "get" (vc-name file) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
285 (if editable "-e") |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
286 (and rev (concat "-r" (vc-sccs-lookup-triple file rev))) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
287 switches)))) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
288 (message "Checking out %s...done" file)))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
289 |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
290 (defun vc-sccs-rollback (files) |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
291 "Roll back, undoing the most recent checkins of FILES. Directories |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
292 are expanded to all version-controlled subfiles." |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
293 (setq files (vc-expand-dirs files)) |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
294 (if (not files) |
105170 | 295 (error "SCCS backend doesn't support directory-level rollback")) |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
296 (dolist (file files) |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
82140
diff
changeset
|
297 (let ((discard (vc-working-revision file))) |
95039
939006f4843e
(vc-sccs-create-tag): Fix typo in error message and pass backend arg.
Juanma Barranquero <lekktu@gmail.com>
parents:
95020
diff
changeset
|
298 (if (null (yes-or-no-p (format "Remove version %s from %s history? " |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
299 discard file))) |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
300 (error "Aborted")) |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
301 (message "Removing revision %s from %s..." discard file) |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
302 (vc-sccs-do-command nil 0 "rmdel" |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
303 (vc-name file) (concat "-r" discard)) |
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
304 (vc-sccs-do-command nil 0 "get" (vc-name file) nil)))) |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
305 |
39001
d13c2139752b
(vc-*-revert-file): Handle new optional arg CONTENTS-DONE.
André Spiegel <spiegel@gnu.org>
parents:
38436
diff
changeset
|
306 (defun vc-sccs-revert (file &optional contents-done) |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
307 "Revert FILE to the version it was based on. If FILE is a directory, |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
308 revert all subfiles." |
95039
939006f4843e
(vc-sccs-create-tag): Fix typo in error message and pass backend arg.
Juanma Barranquero <lekktu@gmail.com>
parents:
95020
diff
changeset
|
309 (if (file-directory-p file) |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
310 (mapc 'vc-sccs-revert (vc-expand-dirs (list file))) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
311 (vc-sccs-do-command nil 0 "unget" (vc-name file)) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
312 (vc-sccs-do-command nil 0 "get" (vc-name file)) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
313 ;; Checking out explicit revisions is not supported under SCCS, yet. |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
314 ;; We always "revert" to the latest revision; therefore |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
315 ;; vc-working-revision is cleared here so that it gets recomputed. |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
316 (vc-file-setprop file 'vc-working-revision nil))) |
33560 | 317 |
318 (defun vc-sccs-steal-lock (file &optional rev) | |
319 "Steal the lock on the current workfile for FILE and revision REV." | |
95039
939006f4843e
(vc-sccs-create-tag): Fix typo in error message and pass backend arg.
Juanma Barranquero <lekktu@gmail.com>
parents:
95020
diff
changeset
|
320 (if (file-directory-p file) |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
321 (mapc 'vc-sccs-steal-lock (vc-expand-dirs (list file))) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
322 (vc-sccs-do-command nil 0 "unget" |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
323 (vc-name file) "-n" (if rev (concat "-r" rev))) |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
324 (vc-sccs-do-command nil 0 "get" |
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
325 (vc-name file) "-g" (if rev (concat "-r" rev))))) |
33560 | 326 |
87432
315124ffb889
* (vc.el, vc-sccs.el, vc-rcs.el, vc-cs.el, vc-mcvs.el): Put
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85141
diff
changeset
|
327 (defun vc-sccs-modify-change-comment (files rev comment) |
315124ffb889
* (vc.el, vc-sccs.el, vc-rcs.el, vc-cs.el, vc-mcvs.el): Put
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85141
diff
changeset
|
328 "Modify (actually, append to) the change comments for FILES on a specified REV." |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
329 (dolist (file (vc-expand-dirs files)) |
95039
939006f4843e
(vc-sccs-create-tag): Fix typo in error message and pass backend arg.
Juanma Barranquero <lekktu@gmail.com>
parents:
95020
diff
changeset
|
330 (vc-sccs-do-command nil 0 "cdc" (vc-name file) |
94190
fad57210c7d2
* lisp/vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94003
diff
changeset
|
331 (concat "-y" comment) (concat "-r" rev)))) |
87432
315124ffb889
* (vc.el, vc-sccs.el, vc-rcs.el, vc-cs.el, vc-mcvs.el): Put
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85141
diff
changeset
|
332 |
33560 | 333 |
334 ;;; | |
335 ;;; History functions | |
336 ;;; | |
337 | |
106472
6e0f1038bc44
Support showing a single log entry from vc-annotate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106060
diff
changeset
|
338 (defun vc-sccs-print-log (files buffer &optional shortlog start-revision-ignored limit) |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
339 "Get change log associated with FILES." |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
340 (setq files (vc-expand-dirs files)) |
106060
2f9ecf376c7a
* vc.el (vc-log-show-limit): Default to 2000.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106033
diff
changeset
|
341 (vc-sccs-do-command buffer 0 "prs" (mapcar 'vc-name files)) |
2f9ecf376c7a
* vc.el (vc-log-show-limit): Default to 2000.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106033
diff
changeset
|
342 (when limit 'limit-unsupported)) |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
343 |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
344 (defun vc-sccs-diff (files &optional oldvers newvers buffer) |
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
345 "Get a difference report using SCCS between two filesets." |
94804
33d1e8fb0ae5
Make SCCS backend directory-aware.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94678
diff
changeset
|
346 (setq files (vc-expand-dirs files)) |
92195
c1eed47c8247
(vc-sccs-diff): Fix setting of oldvers and newvers.
Glenn Morris <rgm@gnu.org>
parents:
92167
diff
changeset
|
347 (setq oldvers (vc-sccs-lookup-triple (car files) oldvers)) |
c1eed47c8247
(vc-sccs-diff): Fix setting of oldvers and newvers.
Glenn Morris <rgm@gnu.org>
parents:
92167
diff
changeset
|
348 (setq newvers (vc-sccs-lookup-triple (car files) newvers)) |
92167 | 349 (apply 'vc-do-command (or buffer "*vc-diff*") |
81967
6bf2af5a341e
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
75347
diff
changeset
|
350 1 "vcdiff" (mapcar 'vc-name (vc-expand-dirs files)) |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
351 (append (list "-q" |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
352 (and oldvers (concat "-r" oldvers)) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
353 (and newvers (concat "-r" newvers))) |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
354 (vc-switches 'SCCS 'diff)))) |
33560 | 355 |
356 | |
357 ;;; | |
95020
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
358 ;;; Tag system. SCCS doesn't have tags, so we simulate them by maintaining |
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
359 ;;; our own set of name-to-revision mappings. |
33560 | 360 ;;; |
361 | |
95020
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
362 (defun vc-sccs-create-tag (backend dir name branchp) |
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
363 (when branchp |
95039
939006f4843e
(vc-sccs-create-tag): Fix typo in error message and pass backend arg.
Juanma Barranquero <lekktu@gmail.com>
parents:
95020
diff
changeset
|
364 (error "SCCS backend %s does not support module branches" backend)) |
95020
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
365 (let ((result (vc-tag-precondition dir))) |
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
366 (if (stringp result) |
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
367 (error "File %s is not up-to-date" result) |
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
368 (vc-file-tree-walk |
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
369 dir |
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
370 (lambda (f) |
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
371 (vc-sccs-add-triple name f (vc-working-revision f))))))) |
33560 | 372 |
373 | |
374 ;;; | |
375 ;;; Miscellaneous | |
376 ;;; | |
377 | |
104621
f4a041a8c69d
* vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103937
diff
changeset
|
378 (defun vc-sccs-previous-revision (file rev) |
f4a041a8c69d
* vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103937
diff
changeset
|
379 (vc-call-backend 'RCS 'previous-revision file rev)) |
f4a041a8c69d
* vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103937
diff
changeset
|
380 |
f4a041a8c69d
* vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103937
diff
changeset
|
381 (defun vc-sccs-next-revision (file rev) |
f4a041a8c69d
* vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103937
diff
changeset
|
382 (vc-call-backend 'RCS 'next-revision file rev)) |
f4a041a8c69d
* vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103937
diff
changeset
|
383 |
33560 | 384 (defun vc-sccs-check-headers () |
385 "Check if the current file has any headers in it." | |
386 (save-excursion | |
387 (goto-char (point-min)) | |
388 (re-search-forward "%[A-Z]%" nil t))) | |
389 | |
390 (defun vc-sccs-rename-file (old new) | |
391 ;; Move the master file (using vc-rcs-master-templates). | |
392 (vc-rename-master (vc-name old) new vc-sccs-master-templates) | |
95020
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
393 ;; Update the tag file. |
33560 | 394 (with-current-buffer |
395 (find-file-noselect | |
396 (expand-file-name vc-sccs-name-assoc-file | |
397 (file-name-directory (vc-name old)))) | |
398 (goto-char (point-min)) | |
399 ;; (replace-regexp (concat ":" (regexp-quote old) "$") (concat ":" new)) | |
400 (while (re-search-forward (concat ":" (regexp-quote old) "$") nil t) | |
401 (replace-match (concat ":" new) nil nil)) | |
402 (basic-save-buffer) | |
403 (kill-buffer (current-buffer)))) | |
404 | |
103553
af4ee0cb7fb7
* vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
405 (defun vc-sccs-find-file-hook () |
af4ee0cb7fb7
* vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
406 ;; If the file is locked by some other user, make |
af4ee0cb7fb7
* vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
407 ;; the buffer read-only. Like this, even root |
af4ee0cb7fb7
* vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
408 ;; cannot modify a file that someone else has locked. |
103937
b0f266cccf0b
* vc-rcs.el (vc-rcs-find-file-hook):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103553
diff
changeset
|
409 (and (stringp (vc-state buffer-file-name 'SCCS)) |
b0f266cccf0b
* vc-rcs.el (vc-rcs-find-file-hook):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103553
diff
changeset
|
410 (setq buffer-read-only t))) |
103553
af4ee0cb7fb7
* vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
411 |
33560 | 412 |
413 ;;; | |
414 ;;; Internal functions | |
415 ;;; | |
416 | |
417 ;; This function is wrapped with `progn' so that the autoload cookie | |
418 ;; copies the whole function itself into loaddefs.el rather than just placing | |
419 ;; a (autoload 'vc-sccs-search-project-dir "vc-sccs") which would not | |
420 ;; help us avoid loading vc-sccs. | |
421 ;;;###autoload | |
422 (progn (defun vc-sccs-search-project-dir (dirname basename) | |
423 "Return the name of a master file in the SCCS project directory. | |
424 Does not check whether the file exists but returns nil if it does not | |
425 find any project directory." | |
426 (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |
427 (when project-dir | |
428 (if (file-name-absolute-p project-dir) | |
429 (setq dirs '("SCCS" "")) | |
430 (setq dirs '("src/SCCS" "src" "source/SCCS" "source")) | |
431 (setq project-dir (expand-file-name (concat "~" project-dir)))) | |
432 (while (and (not dir) dirs) | |
433 (setq dir (expand-file-name (car dirs) project-dir)) | |
434 (unless (file-directory-p dir) | |
435 (setq dir nil) | |
436 (setq dirs (cdr dirs)))) | |
437 (and dir (expand-file-name (concat "s." basename) dir)))))) | |
438 | |
439 (defun vc-sccs-lock-file (file) | |
440 "Generate lock file name corresponding to FILE." | |
441 (let ((master (vc-name file))) | |
442 (and | |
443 master | |
444 (string-match "\\(.*/\\)\\(s\\.\\)\\(.*\\)" master) | |
445 (replace-match "p." t t master 2)))) | |
446 | |
447 (defun vc-sccs-parse-locks () | |
448 "Parse SCCS locks in current buffer. | |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
449 The result is a list of the form ((REVISION . USER) (REVISION . USER) ...)." |
33560 | 450 (let (master-locks) |
451 (goto-char (point-min)) | |
452 (while (re-search-forward "^\\([0-9.]+\\) [0-9.]+ \\([^ ]+\\) .*\n?" | |
453 nil t) | |
454 (setq master-locks | |
455 (cons (cons (match-string 1) (match-string 2)) master-locks))) | |
456 ;; FIXME: is it really necessary to reverse ? | |
457 (nreverse master-locks))) | |
458 | |
459 (defun vc-sccs-add-triple (name file rev) | |
460 (with-current-buffer | |
461 (find-file-noselect | |
462 (expand-file-name vc-sccs-name-assoc-file | |
463 (file-name-directory (vc-name file)))) | |
464 (goto-char (point-max)) | |
465 (insert name "\t:\t" file "\t" rev "\n") | |
466 (basic-save-buffer) | |
467 (kill-buffer (current-buffer)))) | |
468 | |
469 (defun vc-sccs-lookup-triple (file name) | |
95020
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94847
diff
changeset
|
470 "Return the numeric revision corresponding to a named tag of FILE. |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
471 If NAME is nil or a revision number string it's just passed through." |
33560 | 472 (if (or (null name) |
473 (let ((firstchar (aref name 0))) | |
474 (and (>= firstchar ?0) (<= firstchar ?9)))) | |
475 name | |
476 (with-temp-buffer | |
477 (vc-insert-file | |
478 (expand-file-name vc-sccs-name-assoc-file | |
479 (file-name-directory (vc-name file)))) | |
480 (vc-parse-buffer (concat name "\t:\t" file "\t\\(.+\\)") 1)))) | |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
481 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
482 (provide 'vc-sccs) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
483 |
56953 | 484 ;; arch-tag: d751dee3-d7b3-47e1-95e3-7ae98c052041 |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
485 ;;; vc-sccs.el ends here |