2010-01-24 Mark A. Hershberger <mah@everybody.org>
- * progmodes/python.el: Replace reference to obsolete c-subward-mode.
+ * progmodes/python.el: Replace reference to obsolete
+ c-subward-mode.
+
+ * vc-bzr.el: (vc-bzr-revision-table) New function.
2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
(interactive "e")
(vc-dir-at-event e (popup-menu vc-bzr-shelve-menu-map e)))
+(defun vc-bzr-revision-table (files)
+ (let ((vc-bzr-revisions '())
+ (default-directory (file-name-directory (car files))))
+ (with-temp-buffer
+ (vc-bzr-command "log" t 0 files "--line")
+ (let ((start (point-min))
+ (loglines (buffer-substring-no-properties (point-min) (point-max))))
+ (while (string-match "^\\([0-9]+\\):" loglines)
+ (push (match-string 1 loglines) vc-bzr-revisions)
+ (setq start (+ start (match-end 0)))
+ (setq loglines (buffer-substring-no-properties start (point-max))))))
+ vc-bzr-revisions))
+
;;; Revision completion
(eval-and-compile