]> git.eshelyaron.com Git - emacs.git/commitdiff
working version of vc-bzr-revision-table
authorMark A. Hershberger <mhershberger@intrahealth.org>
Mon, 25 Jan 2010 05:02:10 +0000 (00:02 -0500)
committerMark A. Hershberger <mhershberger@intrahealth.org>
Mon, 25 Jan 2010 05:02:10 +0000 (00:02 -0500)
lisp/ChangeLog
lisp/vc-bzr.el

index 1b5d8f241ecb37ce0e7a4988663fd00c382b5c02..e3c34554afe046ea66a0cb43775af625573a917c 100644 (file)
@@ -1,6 +1,9 @@
 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>
 
index d04c783ca327a435f9f63768302d28cb17a33c5c..b3bbc272faab3964f6e96de666ea4307add26525 100644 (file)
@@ -898,6 +898,19 @@ stream.  Standard error output is discarded."
   (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