1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(vc-bzr-find-revision): Rename from

vc-bzr-find-version, forgotten in the 2007-10-10 renaming.
This commit is contained in:
Dan Nicolaescu 2008-08-10 19:48:57 +00:00
parent 3cf235ebe6
commit d3c24c25b3
2 changed files with 7 additions and 2 deletions

View 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.

View 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)