+2007-09-06 Romain Francoise <romain@orebokech.com>
+
+ * vc-bzr.el (vc-bzr-admin-lastrev): New defconst.
+ (vc-bzr-workfile-version): Use it.
+
2007-09-06 Sean O'Rourke <sorourke@cs.ucsd.edu>
* complete.el (PC-do-completion): Don't try to treat
- empty string as an abbreviation.
+ empty string as an abbreviation.
2007-09-06 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
(concat vc-bzr-admin-dirname "/branch/format"))
(defconst vc-bzr-admin-revhistory
(concat vc-bzr-admin-dirname "/branch/revision-history"))
+(defconst vc-bzr-admin-lastrev
+ (concat vc-bzr-admin-dirname "/branch/last-revision"))
;;;###autoload (defun vc-bzr-registered (file)
;;;###autoload (if (vc-find-root file vc-bzr-admin-checkout-format-file)
((rootdir (vc-bzr-root file))
(branch-format-file (concat rootdir "/" vc-bzr-admin-branch-format-file))
(revhistory-file (concat rootdir "/" vc-bzr-admin-revhistory))
- (lastrev-file (concat rootdir "/" "branch/last-revision")))
+ (lastrev-file (concat rootdir "/" vc-bzr-admin-lastrev)))
;; Count lines in .bzr/branch/revision-history to avoid forking a
;; bzr process. This looks at internal files. May break if they
;; change their format.