Mercurial > emacs
annotate lisp/vc-sccs.el @ 53021:92d82baef50b
* xterm.c (XAW_ARROW_SCROLLBARS): Define it for Xaw 1.5E.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Sat, 08 Nov 2003 12:45:13 +0000 |
parents | 695cf19ef79e |
children | f0eb34e60705 9df38e21f685 375f2633d815 |
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 |
35830 | 3 ;; Copyright (C) 1992,93,94,95,96,97,98,99,2000,2001 Free Software Foundation, Inc. |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
4 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
5 ;; 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
|
6 ;; 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
|
7 |
52401 | 8 ;; $Id: vc-sccs.el,v 1.23 2003/08/12 18:01:21 spiegel Exp $ |
31385
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 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
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 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
15 ;; any later version. |
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 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
25 ;; Boston, MA 02111-1307, USA. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
26 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
27 ;;; Commentary: |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
28 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
29 ;;; Code: |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
30 |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48967
diff
changeset
|
31 (eval-when-compile |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
32 (require 'vc)) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
33 |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48967
diff
changeset
|
34 ;;; |
33560 | 35 ;;; Customization options |
36 ;;; | |
37 | |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
38 (defcustom vc-sccs-register-switches nil |
31477 | 39 "*Extra switches for registering a file in SCCS. |
40 A string or list of strings passed to the checkin program by | |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
41 \\[vc-sccs-register]." |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
42 :type '(choice (const :tag "None" nil) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
43 (string :tag "Argument String") |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
44 (repeat :tag "Argument List" |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
45 :value ("") |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
46 string)) |
31477 | 47 :version "21.1" |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
48 :group 'vc) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
49 |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
50 (defcustom vc-sccs-diff-switches nil |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
51 "*A string or list of strings specifying extra switches for `vcdiff', |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
52 the diff utility used for SCCS under VC." |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
53 :type '(choice (const :tag "None" nil) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
54 (string :tag "Argument String") |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
55 (repeat :tag "Argument List" |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
56 :value ("") |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
57 string)) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
58 :version "21.1" |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
59 :group 'vc) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
60 |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
61 (defcustom vc-sccs-header (or (cdr (assoc 'SCCS vc-header-alist)) '("%W%")) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
62 "*Header keywords to be inserted by `vc-insert-headers'." |
35179 | 63 :type '(repeat string) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
64 :group 'vc) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
65 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
66 ;;;###autoload |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
67 (defcustom vc-sccs-master-templates |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
68 '("%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
|
69 "*Where to look for SCCS master files. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
70 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
|
71 :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
|
72 ("%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
|
73 (repeat :tag "User-specified" |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
74 (choice string |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
75 function))) |
31477 | 76 :version "21.1" |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
77 :group 'vc) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
78 |
33560 | 79 |
80 ;;; | |
81 ;;; Internal variables | |
82 ;;; | |
83 | |
31404
f2ab9420390f
2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31385
diff
changeset
|
84 (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
|
85 |
33560 | 86 |
87 ;;; | |
88 ;;; State-querying functions | |
89 ;;; | |
90 | |
48281
b8e04fa0ebdf
(vc-sccs-registered): Improve comment.
André Spiegel <spiegel@gnu.org>
parents:
48264
diff
changeset
|
91 ;;; The autoload cookie below places vc-sccs-registered directly into |
b8e04fa0ebdf
(vc-sccs-registered): Improve comment.
André Spiegel <spiegel@gnu.org>
parents:
48264
diff
changeset
|
92 ;;; loaddefs.el, so that vc-sccs.el does not need to be loaded for |
b8e04fa0ebdf
(vc-sccs-registered): Improve comment.
André Spiegel <spiegel@gnu.org>
parents:
48264
diff
changeset
|
93 ;;; every file that is visited. The definition is repeated below |
b8e04fa0ebdf
(vc-sccs-registered): Improve comment.
André Spiegel <spiegel@gnu.org>
parents:
48264
diff
changeset
|
94 ;;; so that Help and etags can find it. |
b8e04fa0ebdf
(vc-sccs-registered): Improve comment.
André Spiegel <spiegel@gnu.org>
parents:
48264
diff
changeset
|
95 |
b8e04fa0ebdf
(vc-sccs-registered): Improve comment.
André Spiegel <spiegel@gnu.org>
parents:
48264
diff
changeset
|
96 ;;;###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
|
97 (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
|
98 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
99 (defun vc-sccs-state (file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
100 "SCCS-specific function to compute the version control state." |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
101 (with-temp-buffer |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
102 (if (vc-insert-file (vc-sccs-lock-file file)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
103 (let* ((locks (vc-sccs-parse-locks)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
104 (workfile-version (vc-workfile-version file)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
105 (locking-user (cdr (assoc workfile-version locks)))) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
106 (if (not locking-user) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
107 (if (vc-workfile-unchanged-p file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
108 'up-to-date |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
109 'unlocked-changes) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
110 (if (string= locking-user (vc-user-login-name)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
111 'edited |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
112 locking-user))) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
113 'up-to-date))) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
114 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
115 (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
|
116 "SCCS-specific state heuristic." |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
117 (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
|
118 ;; 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
|
119 ;; 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
|
120 ;; 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
|
121 ;; 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
|
122 ;; 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
|
123 ;; group-read and other-read bits, since paranoid users turn them off. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
124 (let* ((attributes (file-attributes file)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
125 (owner-uid (nth 2 attributes)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
126 (permissions (nth 8 attributes))) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
127 (if (string-match ".r-..-..-." permissions) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
128 'up-to-date |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
129 (if (string-match ".rw..-..-." permissions) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
130 (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
|
131 'edited |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
132 (vc-user-login-name owner-uid)) |
52179
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
133 ;; Strange permissions. |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
134 ;; Fall through to real state computation. |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
135 (vc-sccs-state file)))) |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
136 (vc-sccs-state file))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
137 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
138 (defun vc-sccs-workfile-version (file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
139 "SCCS-specific version of `vc-workfile-version'." |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
140 (with-temp-buffer |
52179
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
141 ;; The workfile version is always the latest version number. |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
142 ;; 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
|
143 ;; rather than just the first entry, because the |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
144 ;; first entry might be a deleted ("R") version. |
73faa15ff855
(vc-sccs-state-heuristic): Fix parentheses.
André Spiegel <spiegel@gnu.org>
parents:
50902
diff
changeset
|
145 (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
|
146 (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
|
147 |
31477 | 148 (defun vc-sccs-checkout-model (file) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
149 "SCCS-specific version of `vc-checkout-model'." |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
150 'locking) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
151 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
152 (defun vc-sccs-workfile-unchanged-p (file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
153 "SCCS-specific implementation of vc-workfile-unchanged-p." |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
154 (zerop (apply 'vc-do-command nil 1 "vcdiff" (vc-name file) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
155 (list "--brief" "-q" |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
156 (concat "-r" (vc-workfile-version file)))))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
157 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
158 |
33560 | 159 ;;; |
160 ;;; State-changing functions | |
161 ;;; | |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
162 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
163 (defun vc-sccs-register (file &optional rev comment) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
164 "Register FILE into the SCCS version-control system. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
165 REV is the optional revision number for the file. COMMENT can be used |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
166 to provide an initial description of FILE. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
167 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
168 `vc-register-switches' and `vc-sccs-register-switches' are passed to |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
169 the SCCS command (in that order). |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
170 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
171 Automatically retrieve a read-only version of the file with keywords |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
172 expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile." |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
173 (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
|
174 (basename (file-name-nondirectory file)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
175 (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
|
176 (let ((vc-name |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
177 (or project-file |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
178 (format (car vc-sccs-master-templates) dirname basename)))) |
37051
92a0a59a48ee
(vc-sccs-register): Use relative file names.
André Spiegel <spiegel@gnu.org>
parents:
36713
diff
changeset
|
179 (apply 'vc-do-command nil 0 "admin" vc-name |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
180 (and rev (concat "-r" rev)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
181 "-fb" |
37051
92a0a59a48ee
(vc-sccs-register): Use relative file names.
André Spiegel <spiegel@gnu.org>
parents:
36713
diff
changeset
|
182 (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
|
183 (and comment (concat "-y" comment)) |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
184 (vc-switches 'SCCS 'register))) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
185 (delete-file file) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
186 (if vc-keep-workfiles |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
187 (vc-do-command nil 0 "get" (vc-name file))))) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
188 |
33560 | 189 (defun vc-sccs-responsible-p (file) |
190 "Return non-nil if SCCS thinks it would be responsible for registering FILE." | |
191 ;; TODO: check for all the patterns in vc-sccs-master-templates | |
192 (or (file-directory-p (expand-file-name "SCCS" (file-name-directory file))) | |
193 (stringp (vc-sccs-search-project-dir (or (file-name-directory file) "") | |
194 (file-name-nondirectory file))))) | |
195 | |
196 (defun vc-sccs-checkin (file rev comment) | |
197 "SCCS-specific version of `vc-backend-checkin'." | |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
198 (apply 'vc-do-command nil 0 "delta" (vc-name file) |
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
199 (if rev (concat "-r" rev)) |
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
200 (concat "-y" comment) |
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
201 (vc-switches 'SCCS 'checkin)) |
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
202 (if vc-keep-workfiles |
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
203 (vc-do-command nil 0 "get" (vc-name file)))) |
33560 | 204 |
47798
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
205 (defun vc-sccs-find-version (file rev buffer) |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
206 (apply 'vc-do-command |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
207 buffer 0 "get" (vc-name file) |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
208 "-s" ;; suppress diagnostic output |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
209 "-p" |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
210 (and rev |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
211 (concat "-r" |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
212 (vc-sccs-lookup-triple file rev))) |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
213 (vc-switches 'SCCS 'checkout))) |
47798
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
214 |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
215 (defun vc-sccs-checkout (file &optional editable rev) |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
216 "Retrieve a copy of a saved version of SCCS controlled FILE. |
35134
f7a5d39c26f0
(vc-sccs-latest-on-branch-p): Removed.
André Spiegel <spiegel@gnu.org>
parents:
33560
diff
changeset
|
217 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
|
218 locked. REV is the revision to check out." |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
219 (let ((file-buffer (get-file-buffer file)) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
220 switches) |
47798
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
221 (message "Checking out %s..." file) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
222 (save-excursion |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
223 ;; Change buffers to get local value of vc-checkout-switches. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
224 (if file-buffer (set-buffer file-buffer)) |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
225 (setq switches (vc-switches 'SCCS 'checkout)) |
31385
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
226 ;; Save this buffer's default-directory |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
227 ;; and use save-excursion to make sure it is restored |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
228 ;; in the same buffer it was saved in. |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
229 (let ((default-directory default-directory)) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
230 (save-excursion |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
231 ;; Adjust the default-directory so that the check-out creates |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
232 ;; the file in the right place. |
47798
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
233 (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
|
234 |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48967
diff
changeset
|
235 (and rev (or (string= rev "") |
48967
9f461f463a94
(vc-sccs-checkout): Handle t argument for REV.
André Spiegel <spiegel@gnu.org>
parents:
48281
diff
changeset
|
236 (not (stringp rev))) |
9f461f463a94
(vc-sccs-checkout): Handle t argument for REV.
André Spiegel <spiegel@gnu.org>
parents:
48281
diff
changeset
|
237 (setq rev nil)) |
47798
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
238 (apply 'vc-do-command nil 0 "get" (vc-name file) |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
239 (if editable "-e") |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
240 (and rev (concat "-r" (vc-sccs-lookup-triple file rev))) |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
241 switches)))) |
20dfef584009
(vc-sccs-find-version): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44006
diff
changeset
|
242 (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
|
243 |
39001
d13c2139752b
(vc-*-revert-file): Handle new optional arg CONTENTS-DONE.
André Spiegel <spiegel@gnu.org>
parents:
38436
diff
changeset
|
244 (defun vc-sccs-revert (file &optional contents-done) |
33560 | 245 "Revert FILE to the version it was based on." |
246 (vc-do-command nil 0 "unget" (vc-name file)) | |
247 (vc-do-command nil 0 "get" (vc-name file)) | |
248 ;; Checking out explicit versions is not supported under SCCS, yet. | |
249 ;; We always "revert" to the latest version; therefore | |
250 ;; vc-workfile-version is cleared here so that it gets recomputed. | |
251 (vc-file-setprop file 'vc-workfile-version nil)) | |
252 | |
35134
f7a5d39c26f0
(vc-sccs-latest-on-branch-p): Removed.
André Spiegel <spiegel@gnu.org>
parents:
33560
diff
changeset
|
253 (defun vc-sccs-cancel-version (file editable) |
33560 | 254 "Undo the most recent checkin of FILE. |
35134
f7a5d39c26f0
(vc-sccs-latest-on-branch-p): Removed.
André Spiegel <spiegel@gnu.org>
parents:
33560
diff
changeset
|
255 EDITABLE non-nil means previous version should be locked." |
33560 | 256 (vc-do-command nil 0 "rmdel" |
257 (vc-name file) | |
258 (concat "-r" (vc-workfile-version file))) | |
259 (vc-do-command nil 0 "get" | |
260 (vc-name file) | |
35134
f7a5d39c26f0
(vc-sccs-latest-on-branch-p): Removed.
André Spiegel <spiegel@gnu.org>
parents:
33560
diff
changeset
|
261 (if editable "-e"))) |
33560 | 262 |
263 (defun vc-sccs-steal-lock (file &optional rev) | |
264 "Steal the lock on the current workfile for FILE and revision REV." | |
265 (vc-do-command nil 0 "unget" (vc-name file) "-n" (if rev (concat "-r" rev))) | |
266 (vc-do-command nil 0 "get" (vc-name file) "-g" (if rev (concat "-r" rev)))) | |
267 | |
268 | |
269 ;;; | |
270 ;;; History functions | |
271 ;;; | |
272 | |
273 (defun vc-sccs-print-log (file) | |
274 "Get change log associated with FILE." | |
36713
e7e3ef788639
(vc-sccs-print-log): Output to buffer *vc*, not the current buffer.
André Spiegel <spiegel@gnu.org>
parents:
35830
diff
changeset
|
275 (vc-do-command nil 0 "prs" (vc-name file))) |
33560 | 276 |
277 (defun vc-sccs-logentry-check () | |
278 "Check that the log entry in the current buffer is acceptable for SCCS." | |
279 (when (>= (buffer-size) 512) | |
280 (goto-char 512) | |
281 (error "Log must be less than 512 characters; point is now at pos 512"))) | |
282 | |
283 (defun vc-sccs-diff (file &optional oldvers newvers) | |
284 "Get a difference report using SCCS between two versions of FILE." | |
285 (setq oldvers (vc-sccs-lookup-triple file oldvers)) | |
286 (setq newvers (vc-sccs-lookup-triple file newvers)) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48967
diff
changeset
|
287 (apply 'vc-do-command "*vc-diff*" 1 "vcdiff" (vc-name file) |
35823
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
288 (append (list "-q" |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
289 (and oldvers (concat "-r" oldvers)) |
9396894025fa
(vc-sccs-diff-switches): New customization option.
André Spiegel <spiegel@gnu.org>
parents:
35179
diff
changeset
|
290 (and newvers (concat "-r" newvers))) |
50902
b12a550504a4
(vc-sccs-register, vc-sccs-checkin)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49597
diff
changeset
|
291 (vc-switches 'SCCS 'diff)))) |
33560 | 292 |
293 | |
294 ;;; | |
295 ;;; Snapshot system | |
296 ;;; | |
297 | |
298 (defun vc-sccs-assign-name (file name) | |
299 "Assign to FILE's latest version a given NAME." | |
300 (vc-sccs-add-triple name file (vc-workfile-version file))) | |
301 | |
302 | |
303 ;;; | |
304 ;;; Miscellaneous | |
305 ;;; | |
306 | |
307 (defun vc-sccs-check-headers () | |
308 "Check if the current file has any headers in it." | |
309 (save-excursion | |
310 (goto-char (point-min)) | |
311 (re-search-forward "%[A-Z]%" nil t))) | |
312 | |
313 (defun vc-sccs-rename-file (old new) | |
314 ;; Move the master file (using vc-rcs-master-templates). | |
315 (vc-rename-master (vc-name old) new vc-sccs-master-templates) | |
316 ;; Update the snapshot file. | |
317 (with-current-buffer | |
318 (find-file-noselect | |
319 (expand-file-name vc-sccs-name-assoc-file | |
320 (file-name-directory (vc-name old)))) | |
321 (goto-char (point-min)) | |
322 ;; (replace-regexp (concat ":" (regexp-quote old) "$") (concat ":" new)) | |
323 (while (re-search-forward (concat ":" (regexp-quote old) "$") nil t) | |
324 (replace-match (concat ":" new) nil nil)) | |
325 (basic-save-buffer) | |
326 (kill-buffer (current-buffer)))) | |
327 | |
328 | |
329 ;;; | |
330 ;;; Internal functions | |
331 ;;; | |
332 | |
333 ;; This function is wrapped with `progn' so that the autoload cookie | |
334 ;; copies the whole function itself into loaddefs.el rather than just placing | |
335 ;; a (autoload 'vc-sccs-search-project-dir "vc-sccs") which would not | |
336 ;; help us avoid loading vc-sccs. | |
337 ;;;###autoload | |
338 (progn (defun vc-sccs-search-project-dir (dirname basename) | |
339 "Return the name of a master file in the SCCS project directory. | |
340 Does not check whether the file exists but returns nil if it does not | |
341 find any project directory." | |
342 (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |
343 (when project-dir | |
344 (if (file-name-absolute-p project-dir) | |
345 (setq dirs '("SCCS" "")) | |
346 (setq dirs '("src/SCCS" "src" "source/SCCS" "source")) | |
347 (setq project-dir (expand-file-name (concat "~" project-dir)))) | |
348 (while (and (not dir) dirs) | |
349 (setq dir (expand-file-name (car dirs) project-dir)) | |
350 (unless (file-directory-p dir) | |
351 (setq dir nil) | |
352 (setq dirs (cdr dirs)))) | |
353 (and dir (expand-file-name (concat "s." basename) dir)))))) | |
354 | |
355 (defun vc-sccs-lock-file (file) | |
356 "Generate lock file name corresponding to FILE." | |
357 (let ((master (vc-name file))) | |
358 (and | |
359 master | |
360 (string-match "\\(.*/\\)\\(s\\.\\)\\(.*\\)" master) | |
361 (replace-match "p." t t master 2)))) | |
362 | |
363 (defun vc-sccs-parse-locks () | |
364 "Parse SCCS locks in current buffer. | |
365 The result is a list of the form ((VERSION . USER) (VERSION . USER) ...)." | |
366 (let (master-locks) | |
367 (goto-char (point-min)) | |
368 (while (re-search-forward "^\\([0-9.]+\\) [0-9.]+ \\([^ ]+\\) .*\n?" | |
369 nil t) | |
370 (setq master-locks | |
371 (cons (cons (match-string 1) (match-string 2)) master-locks))) | |
372 ;; FIXME: is it really necessary to reverse ? | |
373 (nreverse master-locks))) | |
374 | |
375 (defun vc-sccs-add-triple (name file rev) | |
376 (with-current-buffer | |
377 (find-file-noselect | |
378 (expand-file-name vc-sccs-name-assoc-file | |
379 (file-name-directory (vc-name file)))) | |
380 (goto-char (point-max)) | |
381 (insert name "\t:\t" file "\t" rev "\n") | |
382 (basic-save-buffer) | |
383 (kill-buffer (current-buffer)))) | |
384 | |
385 (defun vc-sccs-lookup-triple (file name) | |
386 "Return the numeric version corresponding to a named snapshot of FILE. | |
387 If NAME is nil or a version number string it's just passed through." | |
388 (if (or (null name) | |
389 (let ((firstchar (aref name 0))) | |
390 (and (>= firstchar ?0) (<= firstchar ?9)))) | |
391 name | |
392 (with-temp-buffer | |
393 (vc-insert-file | |
394 (expand-file-name vc-sccs-name-assoc-file | |
395 (file-name-directory (vc-name file)))) | |
396 (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
|
397 |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
398 (provide 'vc-sccs) |
b1e1a94dfc0a
(vc-sccs-latest-on-branch-p): Always return t; we
Gerd Moellmann <gerd@gnu.org>
parents:
diff
changeset
|
399 |
52401 | 400 ;;; 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
|
401 ;;; vc-sccs.el ends here |