diff options
| author | Junio C Hamano <gitster@pobox.com> | 2026-03-19 22:31:41 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-03-19 22:31:41 -0700 |
| commit | dd0b14a33849093ea0ae88ef15603a8d63ac6499 (patch) | |
| tree | 7e1bc16c2f77254573ddf32718ee97bde3b293b2 /contrib/diff-highlight/DiffHighlight.pm | |
| parent | 7ff1e8dc1e1680510c96e69965b3fa81372c5037 (diff) | |
| parent | 598f40c4b3de30d8f7c0666823a9d90884b78bee (diff) | |
| download | git-dd0b14a33849093ea0ae88ef15603a8d63ac6499.tar.xz | |
Merge branch 'jk/diff-highlight-identical-pairs' into jk/diff-highlight-more
* jk/diff-highlight-identical-pairs:
contrib/diff-highlight: do not highlight identical pairs
Diffstat (limited to 'contrib/diff-highlight/DiffHighlight.pm')
| -rw-r--r-- | contrib/diff-highlight/DiffHighlight.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/diff-highlight/DiffHighlight.pm b/contrib/diff-highlight/DiffHighlight.pm index 3d061bc0b7..f0607a4b68 100644 --- a/contrib/diff-highlight/DiffHighlight.pm +++ b/contrib/diff-highlight/DiffHighlight.pm @@ -273,6 +273,18 @@ sub highlight_line { # or suffix (disregarding boring bits like whitespace and colorization). sub is_pair_interesting { my ($a, $pa, $sa, $b, $pb, $sb) = @_; + + # We hit this case if the prefix consumed the entire line, meaning + # that two lines are identical. This generally shouldn't happen, + # since it implies the diff isn't minimal (you could shrink the hunk by + # making this a context line). But you can see it when the line + # content is the same, but the trailing newline is dropped, like: + # + # -foo + # +foo + # \No newline at end of file + return 0 if $pa == @$a || $pb == @$b; + my $prefix_a = join('', @$a[0..($pa-1)]); my $prefix_b = join('', @$b[0..($pb-1)]); my $suffix_a = join('', @$a[($sa+1)..$#$a]); |
