Browse Source

gitweb: There can be empty patches (in git_patchset_body)

We now do not skip over empty patches in git_patchset_body
(where empty means that they consist only of git diff header,
and of extended diff header), so uncomment branch of code dealing
with empty patches (patches which do not have even two-line
from/to header)

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Jakub Narebski 18 years ago committed by Junio C Hamano
parent
commit
1ebb948f65
  1. 2
      gitweb/gitweb.perl

2
gitweb/gitweb.perl

@ -2527,7 +2527,7 @@ sub git_patchset_body { @@ -2527,7 +2527,7 @@ sub git_patchset_body {
print "<div class=\"diff from_file\">$patch_line</div>\n";

$patch_line = <$fd>;
#last PATCH unless $patch_line;
last PATCH unless $patch_line;
chomp $patch_line;

#assert($patch_line =~ m/^+++/) if DEBUG;

Loading…
Cancel
Save