Skip to content

Commit 3b3c79f

Browse files
normanrgitster
authored andcommitted
diff-highlight: fix a whitespace nit
This changes the indent from "<tab><sp><sp><sp><sp><sp><sp><sp><sp>" to "<tab><tab>" so that the statement lines up with the rest of the block. Signed-off-by: Norman Rasmussen <[email protected]> Acked-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5fa0f52 commit 3b3c79f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/diff-highlight/DiffHighlight.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ sub handle_line {
7272
(?:$COLOR?\|$COLOR?[ ])* # zero or more trailing "|"
7373
[ ]* # trailing whitespace for merges
7474
/x) {
75-
my $graph_prefix = $&;
75+
my $graph_prefix = $&;
7676

7777
# We must flush before setting graph indent, since the
7878
# new commit may be indented differently from what we

0 commit comments

Comments
 (0)