aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEric S. Raymond2008-05-07 22:11:08 +0000
committerEric S. Raymond2008-05-07 22:11:08 +0000
commitdb86064f7352b4401d5ffe6681c408a2795347ec (patch)
treea3240cd0f86d214de21a58ec1a0e2d9055a0c481 /lisp
parent4903369afeabaf913164f07fccd285e8284627ff (diff)
downloademacs-db86064f7352b4401d5ffe6681c408a2795347ec.tar.gz
emacs-db86064f7352b4401d5ffe6681c408a2795347ec.zip
Meta-CVS support removed.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/vc-hooks.el5
-rw-r--r--lisp/vc-mcvs.el2
3 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 437c4c2af3f..3dc7b942e1c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * vc.el, vc-dispatcher.el: VC-Dired support removed. The code 3 * vc.el, vc-dispatcher.el: VC-Dired support removed. The code
4 uses a ewoc-based implementation now. 4 uses a ewoc-based implementation now.
5 * vc-hooks.el: Support for Meta-CVS has been removed.
5 6
62008-05-07 Stefan Monnier <monnier@iro.umontreal.ca> 72008-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7 8
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el
index 1e2101e1361..06b1b3d36a9 100644
--- a/lisp/vc-hooks.el
+++ b/lisp/vc-hooks.el
@@ -16,7 +16,7 @@
16;; GNU Emacs is distributed in the hope that it will be useful, 16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of 17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details. 19;; NU General Public License for more details.
20 20
21;; You should have received a copy of the GNU General Public License 21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
@@ -60,7 +60,7 @@ interpreted as hostnames."
60 :type 'regexp 60 :type 'regexp
61 :group 'vc) 61 :group 'vc)
62 62
63(defcustom vc-handled-backends '(RCS CVS SVN SCCS Bzr Git Hg Mtn Arch MCVS) 63(defcustom vc-handled-backends '(RCS CVS SVN SCCS Bzr Git Hg Mtn Arch)
64 ;; RCS, CVS, SVN and SCCS come first because they are per-dir 64 ;; RCS, CVS, SVN and SCCS come first because they are per-dir
65 ;; rather than per-tree. RCS comes first because of the multibackend 65 ;; rather than per-tree. RCS comes first because of the multibackend
66 ;; support intended to use RCS for local commits (with a remote CVS server). 66 ;; support intended to use RCS for local commits (with a remote CVS server).
@@ -75,6 +75,7 @@ An empty list disables VC altogether."
75 :group 'vc) 75 :group 'vc)
76 76
77;; Note: we don't actually have a darcs back end yet. 77;; Note: we don't actually have a darcs back end yet.
78;; Also, Meta-CVS (corresponsding to MCVS) is unsupported.
78(defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS" 79(defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS"
79 ".svn" ".git" ".hg" ".bzr" 80 ".svn" ".git" ".hg" ".bzr"
80 "_MTN" "_darcs" "{arch}") 81 "_MTN" "_darcs" "{arch}")
diff --git a/lisp/vc-mcvs.el b/lisp/vc-mcvs.el
index 2a8ea2cfb85..9eb91503089 100644
--- a/lisp/vc-mcvs.el
+++ b/lisp/vc-mcvs.el
@@ -3,7 +3,7 @@
3;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 3;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4 4
5;; Author: FSF (see vc.el for full credits) 5;; Author: FSF (see vc.el for full credits)
6;; Maintainer: Stefan Monnier <monnier@gnu.org> 6;; Maintainer: None
7 7
8;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
9 9