]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
authorDmitry Gutov <dgutov@yandex.ru>
Mon, 25 Nov 2013 02:28:02 +0000 (04:28 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 25 Nov 2013 02:28:02 +0000 (04:28 +0200)
work when annotation is invisible.

Fixes: debbugs:13886
lisp/ChangeLog
lisp/vc/vc-git.el

index 349d12225fcc8329e74fdb2fe144839d9cbe7717..f2d2f732222713245e13342bf917ed1da1172ac8 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-25  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
+       work when annotation is invisible (Bug#13886).
+
 2013-11-24  Simon Schubert  <2@0x2c.org>  (tiny change)
 
        * json.el (json-alist-p): Only return non-nil if the alist has
index fd5c91ef4904a0db162981a3525bb00d1919c40e..8acb23dfd6c1ffb19a15c5a0dea8afe27240f6dc 100644 (file)
@@ -931,7 +931,7 @@ or BRANCH^ (where \"^\" can be repeated)."
 
 (defun vc-git-annotate-extract-revision-at-line ()
   (save-excursion
-    (move-beginning-of-line 1)
+    (beginning-of-line)
     (when (looking-at "\\([0-9a-f^][0-9a-f]+\\) \\(\\([^(]+\\) \\)?")
       (let ((revision (match-string-no-properties 1)))
        (if (match-beginning 2)