Browse Source

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>
maint
Norman Rasmussen 5 years ago committed by Junio C Hamano
parent
commit
3b3c79f6c9
  1. 2
      contrib/diff-highlight/DiffHighlight.pm

2
contrib/diff-highlight/DiffHighlight.pm

@ -72,7 +72,7 @@ sub handle_line { @@ -72,7 +72,7 @@ sub handle_line {
(?:$COLOR?\|$COLOR?[ ])* # zero or more trailing "|"
[ ]* # trailing whitespace for merges
/x) {
my $graph_prefix = $&;
my $graph_prefix = $&;

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

Loading…
Cancel
Save