summaryrefslogtreecommitdiff
path: root/lisp/vc-git.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2009-08-21 03:37:33 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2009-08-21 03:37:33 +0000
commitbbe1f50262281cdb4c781d5c3d02b3d58e62d03f (patch)
tree9ba58d1325b811afae256724db2894d86f5b729d /lisp/vc-git.el
parent6fd2d19a36635272bb7293a8fbfd63172875dc96 (diff)
downloademacs-bbe1f50262281cdb4c781d5c3d02b3d58e62d03f.tar.gz
(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.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r--lisp/vc-git.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 523def3cfed..0d35afa739e 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -553,7 +553,7 @@ or BRANCH^ (where \"^\" can be repeated)."
(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))