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

Merge pull request #90 from HaraldJoerg/utf_pod

Fix accented characters in SQLite.pm's POD
This commit is contained in:
Kenichi Ishigaki 2021-08-03 21:50:14 +09:00 committed by GitHub
commit 428148d2cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};