(vc-bzr-find-revision): Rename from
authorDan Nicolaescu <dann@ics.uci.edu>
Sun, 10 Aug 2008 19:48:57 +0000 (19:48 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sun, 10 Aug 2008 19:48:57 +0000 (19:48 +0000)
vc-bzr-find-version, forgotten in the 2007-10-10 renaming.

lisp/ChangeLog
lisp/vc-bzr.el

index 73eafca..f5c36e1 100644 (file)
@@ -1,3 +1,8 @@
+2008-08-10  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-bzr.el (vc-bzr-find-revision): Rename from
+       vc-bzr-find-version, forgotten in the 2007-10-10 renaming.
+
 2008-08-10  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/xesam.el (xesam-search-engines): Add Debbugs hit fields.
index 12351e6..9ba97cf 100644 (file)
@@ -403,8 +403,8 @@ REV non-nil gets an error."
   (if rev (error "Can't check in a specific revision with bzr"))
   (vc-bzr-command "commit" nil 0 files "-m" comment))
 
-(defun vc-bzr-find-version (file rev buffer)
-  "Fetch version REV of file FILE and put it into BUFFER."
+(defun vc-bzr-find-revision (file rev buffer)
+  "Fetch revision REV of file FILE and put it into BUFFER."
     (with-current-buffer buffer
       (if (and rev (stringp rev) (not (string= rev "")))
           (vc-bzr-command "cat" t 0 file "-r" rev)