diff options
| author | Nick Roberts | 2009-09-06 22:08:31 +0000 |
|---|---|---|
| committer | Nick Roberts | 2009-09-06 22:08:31 +0000 |
| commit | 2f1c4cd0684c8409969a214413857c6fc750f516 (patch) | |
| tree | b0a06d0bb1fd5946a1e3b060cd666dff90480c24 | |
| parent | 76ff67bfc5c8f90114b9d983f11d673b3710431e (diff) | |
| download | emacs-2f1c4cd0684c8409969a214413857c6fc750f516.tar.gz emacs-2f1c4cd0684c8409969a214413857c6fc750f516.zip | |
(vc-git-annotate-command): Use separator to parse
arguments correctly.
| -rw-r--r-- | lisp/vc-git.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 3be88e1f80a..d4b65127c3c 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el | |||
| @@ -566,7 +566,7 @@ or BRANCH^ (where \"^\" can be repeated)." | |||
| 566 | 566 | ||
| 567 | (defun vc-git-annotate-command (file buf &optional rev) | 567 | (defun vc-git-annotate-command (file buf &optional rev) |
| 568 | (let ((name (file-relative-name file))) | 568 | (let ((name (file-relative-name file))) |
| 569 | (vc-git-command buf 'async name "blame" "--date=iso" rev))) | 569 | (vc-git-command buf 'async name "blame" "--date=iso" rev "--"))) |
| 570 | 570 | ||
| 571 | (declare-function vc-annotate-convert-time "vc-annotate" (time)) | 571 | (declare-function vc-annotate-convert-time "vc-annotate" (time)) |
| 572 | 572 | ||