# HG changeset patch # User Dan Nicolaescu # Date 1250825853 0 # Node ID 46cbb492149b4e856de7d1244fc69f0ac0d3e42d # Parent 2e03e5755cf157b6360fcebc7fbbb7918e45801d (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. diff -r 2e03e5755cf1 -r 46cbb492149b lisp/ChangeLog --- 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 + + * 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 * net/dbus.el (top): Don't check for (getenv diff -r 2e03e5755cf1 -r 46cbb492149b lisp/vc-git.el --- 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))