]> Lady’s Gitweb - Gitweb/commit
gitweb: Clean up code in git_search_* subroutines
authorJakub Narebski <redacted>
Wed, 22 Jun 2011 15:28:54 +0000 (17:28 +0200)
committerLady <redacted>
Mon, 6 Apr 2026 04:51:31 +0000 (00:51 -0400)
commit19ffc2f06610e83269ad9ad795929d84e0fd61d0d0d454233e46582138872495
tree0072ec0a38d1b069183419aaeaf263b3c07fe042ae3058998eb3e54b7c817ec4
parent39c9866bda869031e45356e34b519c4a7f3f2869cd39c52dc039f78438ba261c
gitweb: Clean up code in git_search_* subroutines

Replace sequence of

       $foo .= "bar";
       $foo .= "baz";

with

       $foo .= "bar" .
       "baz";

Use href(-replay=>1, -page=>undef) for first page of a multipl-page view.

Wrap some lines to reduce their length. Some lines still have more than 80
characters, but lines are shorter now.

No functional changes intended.

Signed-off-by: Jakub Narebski <redacted>
Signed-off-by: Junio C Hamano <redacted>
gitweb.perl
This page took 0.221357 seconds and 4 git commands to generate.