1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

Fix accented characters in SQLite.pm's POD

This commit is contained in:
Harald Jörg 2021-08-03 13:55:13 +02:00
parent 711f90b8c7
commit b4a573259f

View file

@ -2621,7 +2621,7 @@ characters :
use DBD::SQLite;
$DBD::SQLite::COLLATION{no_accents} = sub {
my ( $a, $b ) = map lc, @_;
tr[珞砌裙銜韭鴉<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>]
tr[àâáäåãçðèêéëìîíïñòôóöõøùûúüý]
[aaaaaacdeeeeiiiinoooooouuuuy] for $a, $b;
$a cmp $b;
};