changeset 104625:97ec4e51e2eb

(vc-cvs-update-changelog): Fix typo.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 27 Aug 2009 01:50:12 +0000
parents eee8a7124ad0
children caa79498564a
files lisp/ChangeLog lisp/vc-cvs.el
diffstat 2 files changed, 14 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Aug 26 20:55:39 2009 +0000
+++ b/lisp/ChangeLog	Thu Aug 27 01:50:12 2009 +0000
@@ -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.
--- a/lisp/vc-cvs.el	Wed Aug 26 20:55:39 2009 +0000
+++ b/lisp/vc-cvs.el	Thu Aug 27 01:50:12 2009 +0000
@@ -633,6 +633,16 @@
 	(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
 ;;;