From faacc1d69382e64f81e3f28f502448d5ab9d02bb Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Fri, 21 Apr 2017 19:42:59 +0200 Subject: [PATCH] charset: display latin1 parents again Previously excluded due to common fallback, but hides deliberate parentage with current inheritance. --- charset.plp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charset.plp b/charset.plp index 4e25ef1..bd90f89 100644 --- a/charset.plp +++ b/charset.plp @@ -419,7 +419,7 @@ for my $row (@request) { printf '
', !$row->{cell} && ' charmap'; my $title = $row->{set}; $title .= " " - for grep { $_ ne 'iso-8859-1' } $row->{parent} // (); + for $row->{parent} || (); printf '', $title; print '' x ($cols + 1); for my $section (qw{thead}) { -- 2.30.0
%s