From 4367c48e7e4f434e11d325d0cb85551bced0958a Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Sun, 28 Feb 2021 09:59:52 +0800 Subject: [PATCH] Fix pluralising the Tag/Usertag headers The match was on the lowercase version header names but the lowercasing happened after the header name match. --- scripts/process | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/process b/scripts/process index ecc0071..e80c738 100755 --- a/scripts/process +++ b/scripts/process @@ -233,9 +233,9 @@ for my $phline (@bodylines) my ($fn, $fv) = ($1, $2); $fv =~ s/\s*$//; # pluralize tag/usertag + $fn = lc $fn; $fn = $fn.'s' if $fn =~ /^(?:tag|usertag)$/; print {$debugfh} ">$fn|$fv|\n"; - $fn = lc $fn; if ($fn =~ /^control$/) { push @control_bits,$fv; } else { -- 2.39.2