emacs-devel
[Top][All Lists]
Advanced

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

Re: vc-annotate bugs


From: Stefan Monnier
Subject: Re: vc-annotate bugs
Date: Tue, 21 Aug 2007 12:24:24 -0400
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux)

> The backtrace is

> Debugger entered--Lisp error: (beginning-of-buffer)
>   signal(beginning-of-buffer nil)
>   line-move-1(-1 nil nil)
>   line-move(-1 nil nil nil)
>   previous-line()
>   vc-annotate-warp-version("1.4")
>   vc-annotate-revision-previous-to-line()
>   call-interactively(vc-annotate-revision-previous-to-line)

Thanks.
I've installed the patch below in the 22 branch which should fix it.
I have not investigated the second bug yet, it's clearly related to VC
starting a second asynchronous process in the buffer before the first
process is finished.


        Stefan


--- vc.el       09 aoû 2007 10:33:12 -0400      1.424.2.5
+++ vc.el       21 aoû 2007 11:47:27 -0400      
@@ -3333,7 +3333,7 @@
                      vc-annotate-parent-display-mode
                      buf)
        (goto-line (min oldline (progn (goto-char (point-max))
-                                      (previous-line)
+                                      (forward-line -1)
                                       (line-number-at-pos))) buf)))))
 
 (defun vc-annotate-compcar (threshold a-list)






reply via email to

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