From ffea51e5468ae4db1e8cafd5fc44cc9990f9fb90 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 10 Sep 2022 08:17:00 +0000 Subject: www_listing: avoid unnecessary work for common cases We need to branch for non-empty `q=' parameters anyways, but `q=' is usually empty/unset. While we're in the area, `chomp' reads `$/' while `chop' is simpler. Furthermore, we can shave a few bytes off the form HTML by omitting spaces before `/>' and placing `\n' to wrap long lines before attribute names. --- lib/PublicInbox/WwwListing.pm | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'lib/PublicInbox/WwwListing.pm') diff --git a/lib/PublicInbox/WwwListing.pm b/lib/PublicInbox/WwwListing.pm index 0ab41452..35abf050 100644 --- a/lib/PublicInbox/WwwListing.pm +++ b/lib/PublicInbox/WwwListing.pm @@ -169,17 +169,15 @@ sub mset_nav_top { my ($ctx, $mset) = @_; my $q = $ctx->{-sq}; my $qh = $q->{'q'} // ''; - utf8::decode($qh); - $qh = ascii_html($qh); - $qh = qq[\nvalue="$qh"] if $qh ne ''; - my $rv = <
+	if ($qh ne '') {
+		utf8::decode($qh);
+		$qh = qq[\nvalue="].ascii_html($qh).'"';
+	}
+	chop(my $rv = <
 EOM
-	chomp $rv;
 	if (defined($q->{'q'})) {
 		my $initial_q = $ctx->{-uxs_retried};
 		if (defined $initial_q) {
-- 
cgit v1.2.3-24-ge0c7