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 <norman@rasmussen.co.za> Acked-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Norman Rasmussen committed
Oct 15, 2019 at 03:31 UTC
3b3c79f6c9cdd3fc6f5231e2d8c53ee732cfc771
1 file changed
+1
-1
contrib/diff-highlight/DiffHighlight.pm
+1
-1
@@ -72,7 +72,7 @@ sub handle_line {
72
(?:$COLOR?\|$COLOR?[ ])* # zero or more trailing "|"
73
[ ]* # trailing whitespace for merges
74
/x) {
75
- my $graph_prefix = $&;
75
+ my $graph_prefix = $&;
76
77
# We must flush before setting graph indent, since the
78
# new commit may be indented differently from what we