diff options
| author | Dan Nicolaescu | 2009-08-21 03:37:33 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-08-21 03:37:33 +0000 |
| commit | bbe1f50262281cdb4c781d5c3d02b3d58e62d03f (patch) | |
| tree | 9ba58d1325b811afae256724db2894d86f5b729d | |
| parent | 6fd2d19a36635272bb7293a8fbfd63172875dc96 (diff) | |
| download | emacs-bbe1f50262281cdb4c781d5c3d02b3d58e62d03f.tar.gz emacs-bbe1f50262281cdb4c781d5c3d02b3d58e62d03f.zip | |
(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.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/vc-git.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 19d8c262889..42465ef1817 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2009-08-21 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * vc-git.el (vc-git-annotate-command): Run asynchronously. | ||
| 4 | Explicitly pass the date format to git blame so that user local | ||
| 5 | so that the output format can be parsed. | ||
| 6 | |||
| 1 | 2009-08-20 Michael Albinus <michael.albinus@gmx.de> | 7 | 2009-08-20 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 8 | ||
| 3 | * net/dbus.el (top): Don't check for (getenv | 9 | * net/dbus.el (top): Don't check for (getenv |
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)." | |||
| 553 | 553 | ||
| 554 | (defun vc-git-annotate-command (file buf &optional rev) | 554 | (defun vc-git-annotate-command (file buf &optional rev) |
| 555 | (let ((name (file-relative-name file))) | 555 | (let ((name (file-relative-name file))) |
| 556 | (vc-git-command buf 0 name "blame" rev))) | 556 | (vc-git-command buf 'async name "blame" "--date=iso" rev))) |
| 557 | 557 | ||
| 558 | (declare-function vc-annotate-convert-time "vc-annotate" (time)) | 558 | (declare-function vc-annotate-convert-time "vc-annotate" (time)) |
| 559 | 559 | ||