changeset 104379:46cbb492149b

(vc-git-annotate-command): Run asynchronously. Explicitly pass the date format to git blame so that user local so that the output format can be parsed.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 21 Aug 2009 03:37:33 +0000
parents 2e03e5755cf1
children fb63f91960b0
files lisp/ChangeLog lisp/vc-git.el
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Thu Aug 20 15:24:58 2009 +0000
+++ b/lisp/ChangeLog	Fri Aug 21 03:37:33 2009 +0000
@@ -1,3 +1,9 @@
+2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
+
+	* vc-git.el (vc-git-annotate-command): Run asynchronously.
+	Explicitly pass the date format to git blame so that user local
+	so that the output format can be parsed.
+
 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
 
 	* net/dbus.el (top): Don't check for (getenv
--- a/lisp/vc-git.el	Thu Aug 20 15:24:58 2009 +0000
+++ b/lisp/vc-git.el	Fri Aug 21 03:37:33 2009 +0000
@@ -553,7 +553,7 @@
 
 (defun vc-git-annotate-command (file buf &optional rev)
   (let ((name (file-relative-name file)))
-    (vc-git-command buf 0 name "blame" rev)))
+    (vc-git-command buf 'async name "blame" "--date=iso" rev)))
 
 (declare-function vc-annotate-convert-time "vc-annotate" (time))