diff options
author | André Spiegel <spiegel@gnu.org> | 2000-10-04 09:51:15 +0000 |
---|---|---|
committer | André Spiegel <spiegel@gnu.org> | 2000-10-04 09:51:15 +0000 |
commit | b3d6528a4c29f91232a46dc05bd231d0229a38a6 (patch) | |
tree | 4f8f23315080b1c03e8a6878230abc6baf6519ef /lisp/vc-cvs.el | |
parent | d445a9756a2b10ac488561ba1ce16397101e5548 (diff) | |
download | emacs-b3d6528a4c29f91232a46dc05bd231d0229a38a6.tar.gz |
(vc-cvs-make-version-backups): Return t if vc-cvs-stay-local-p.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 95e2252c7f2..7b4b3f2dd84 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -5,7 +5,7 @@ ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel <spiegel@gnu.org> -;; $Id: vc-cvs.el,v 1.3 2000/09/07 20:01:53 fx Exp $ +;; $Id: vc-cvs.el,v 1.4 2000/09/09 00:48:39 monnier Exp $ ;; This file is part of GNU Emacs. @@ -551,6 +551,10 @@ Inappropriate for CVS" This is only possible if CVS is responsible for FILE's directory." (vc-cvs-responsible-p file)) +(defun vc-cvs-make-version-backups (file) + "Return non-nil if version backups should be made for FILE." + (vc-cvs-stay-local-p file)) + (defun vc-cvs-register (file &optional rev comment) "Register FILE into the CVS version-control system. COMMENT can be used to provide an initial description of FILE. |