diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 73eafca52a0..f5c36e1995d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-08-10 Dan Nicolaescu + + * 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 * net/xesam.el (xesam-search-engines): Add Debbugs hit fields. diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el index 12351e606a0..9ba97cf7f94 100644 --- a/lisp/vc-bzr.el +++ b/lisp/vc-bzr.el @@ -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)