summaryrefslogtreecommitdiff
path: root/lisp/vc-cvs.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2009-08-27 01:50:12 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2009-08-27 01:50:12 +0000
commit8b7caf26157e809af76fed24e402e924afdc553b (patch)
tree287e950f4891cb4c445f55aa63b33f05e4cf0223 /lisp/vc-cvs.el
parent1d82148991c0aa48314829f14e1e891bf88864f2 (diff)
downloademacs-8b7caf26157e809af76fed24e402e924afdc553b.tar.gz
(vc-cvs-update-changelog): Fix typo.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r--lisp/vc-cvs.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el
index b096f2304f1..33571c10c31 100644
--- a/lisp/vc-cvs.el
+++ b/lisp/vc-cvs.el
@@ -633,6 +633,16 @@ systime, or nil if there is none."
(match-string-no-properties 1)
nil)))
+(defun vc-cvs-previous-revision (file rev)
+ (vc-call-backend 'RCS 'previous-revision file rev))
+
+(defun vc-cvs-next-revision (file rev)
+ (vc-call-backend 'RCS 'next-revision file rev))
+
+;; FIXME: This should probably be replaced by code using cvs2cl.
+(defun vc-cvs-update-changelog (files)
+ (vc-call-backend 'RCS 'update-changelog files))
+
;;;
;;; Tag system
;;;