From 2823d4d360b2f53c1d63ba742808eaee80ede1e4 Mon Sep 17 00:00:00 2001 From: Norman Rasmussen Date: Sun, 13 Oct 2019 05:25:12 -0700 Subject: [PATCH] diff-highlight: fix a whitespace nit This changes the indent from "" to "" so that the statement lines up with the rest of the block. Signed-off-by: Norman Rasmussen --- contrib/diff-highlight/DiffHighlight.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/diff-highlight/DiffHighlight.pm b/contrib/diff-highlight/DiffHighlight.pm index 7440aa1c463810..e2589922a65964 100644 --- a/contrib/diff-highlight/DiffHighlight.pm +++ b/contrib/diff-highlight/DiffHighlight.pm @@ -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