emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99874: Fix annotating other revis


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99874: Fix annotating other revisions for renamed files in vc-annotate.
Date: Mon, 21 Jun 2010 20:00:54 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99874
committer: Dan Nicolaescu <address@hidden>
branch nick: emacs-23
timestamp: Mon 2010-06-21 20:00:54 -0700
message:
  Fix annotating other revisions for renamed files in vc-annotate.
  * lisp/vc-annotate.el (vc-annotate): Add an optional argument for the
  VC backend.  Use it when non-nil.
  (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.  (Bug#6487)
modified:
  lisp/ChangeLog
  lisp/vc-annotate.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-06-22 02:08:55 +0000
+++ b/lisp/ChangeLog    2010-06-22 03:00:54 +0000
@@ -1,5 +1,10 @@
 2010-06-22  Dan Nicolaescu  <address@hidden>
 
+       Fix annotating other revisions for renamed files in vc-annotate.
+       * vc-annotate.el (vc-annotate): Add an optional argument for the
+       VC backend.  Use it when non-nil.
+       (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.  
(Bug#6487)
+
        Fix vc-annotate-show-changeset-diff-revision-at-line for git.
        * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
        Do not pass the file name to the 'previous-revision call when we
@@ -7,7 +12,7 @@
 
 2010-06-21  Dan Nicolaescu  <address@hidden>
 
-       Fix finding revisions in for renamed files in vc-annotate.
+       Fix finding revisions for renamed files in vc-annotate.
        * vc.el (vc-find-revision): Add an optional argument for
        the VC backend.  Use it when non-nil.
        * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC

=== modified file 'lisp/vc-annotate.el'
--- a/lisp/vc-annotate.el       2010-06-22 02:08:55 +0000
+++ b/lisp/vc-annotate.el       2010-06-22 03:00:54 +0000
@@ -314,7 +314,7 @@
                  vc-annotate-display-mode))))
 
 ;;;###autoload
-(defun vc-annotate (file rev &optional display-mode buf move-point-to)
+(defun vc-annotate (file rev &optional display-mode buf move-point-to vc-bk)
   "Display the edit history of the current FILE using colors.
 
 This command creates a buffer that shows, for each line of the current
@@ -335,6 +335,8 @@
 
 If MOVE-POINT-TO is given, move the point to that line.
 
+If VC-BK is given used that VC backend.
+
 Customization variables:
 
 `vc-annotate-menu-elements' customizes the menu elements of the
@@ -375,7 +377,7 @@
                ;; In case it had to be uniquified.
                (setq temp-buffer-name (buffer-name))))
     (with-output-to-temp-buffer temp-buffer-name
-      (let ((backend (vc-backend file))
+      (let ((backend (or vc-bk (vc-backend file)))
            (coding-system-for-read buffer-file-coding-system))
         (vc-call-backend backend 'annotate-command file
                          (get-buffer temp-buffer-name) rev)
@@ -596,7 +598,8 @@
                     ;; place the point in the line.
                     (min oldline (progn (goto-char (point-max))
                                          (forward-line -1)
-                                         (line-number-at-pos))))))))
+                                         (line-number-at-pos)))
+                    vc-annotate-backend)))))
 
 (defun vc-annotate-compcar (threshold a-list)
   "Test successive cons cells of A-LIST against THRESHOLD.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]