summaryrefslogtreecommitdiff
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
commitb3cca6a6971a38204dcbd11c45b0f67781c0b39b (patch)
tree4f7f8f4d122222460af13493db4a110aa2c38d8c
parent4ed8c7aadb59c8ae75641710e3d9ff5bddbbd952 (diff)
downloademacs-b3cca6a6971a38204dcbd11c45b0f67781c0b39b.tar.gz
(vc-cvs-update-changelog): Fix typo.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc-cvs.el10
2 files changed, 14 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d35097f74a1..2eb0dda691f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-27 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
+
2009-08-26 Sam Steingold <sds@gnu.org>
* simple.el (save-interprogram-paste-before-kill): New user option.
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
;;;