]> git.ipfire.org Git - thirdparty/git.git/commitdiff
gitweb: There can be empty patches (in git_patchset_body)
authorJakub Narebski <jnareb@gmail.com>
Wed, 3 Jan 2007 19:47:25 +0000 (20:47 +0100)
committerJunio C Hamano <junkio@cox.net>
Wed, 3 Jan 2007 20:19:20 +0000 (12:19 -0800)
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>
gitweb/gitweb.perl

index 05b3876df3ffba916058f1841fe2f2b8f2b1a0fc..2ead917a9401cddecc5335c72fc0cf4233a3c4d5 100755 (executable)
@@ -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;