Skip to content

Commit

Permalink
loc_tools: Add check for ISO-8859
Browse files Browse the repository at this point in the history
Previously the dashless version was tested, leading to some missed
locales on some systems.
  • Loading branch information
khwilliamson committed Jul 12, 2023
1 parent 3245d1b commit d49bacc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions t/loc_tools.pl
Expand Up @@ -249,6 +249,7 @@ sub _decode_encodings { # For use only by other functions in this file!
foreach (split(/ /, shift)) {
if (/^(\d+)$/) {
push @enc, "ISO8859-$1";
push @enc, "ISO-8859-$1";
push @enc, "iso8859$1"; # HP
if ($1 eq '1') {
push @enc, "roman8"; # HP
Expand Down

0 comments on commit d49bacc

Please sign in to comment.