Skip to content

Commit 2d7d071

Browse files
authored
Merge pull request #292 from sharetribe/master
Bug: Add missing nil argument to vc-jj--process-lines call
2 parents 4905749 + c9a5aec commit 2d7d071

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

diff-hl.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1582,7 +1582,8 @@ CONTEXT-LINES is the size of the unified diff context, defaults to 0."
15821582
(goto-char (point-min))
15831583
(buffer-substring-no-properties (point) (line-end-position))))
15841584
((eq backend 'JJ)
1585-
(car (last (vc-jj--process-lines "log" "--no-graph"
1585+
(car (last (vc-jj--process-lines nil
1586+
"log" "--no-graph"
15861587
"-r" revision
15871588
"-T" "change_id" "-n" "1"))))
15881589
(t

0 commit comments

Comments
 (0)