mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
Merge pull request #90 from HaraldJoerg/utf_pod
Fix accented characters in SQLite.pm's POD
This commit is contained in:
commit
428148d2cd
1 changed files with 1 additions and 1 deletions
|
@ -2621,7 +2621,7 @@ characters :
|
||||||
use DBD::SQLite;
|
use DBD::SQLite;
|
||||||
$DBD::SQLite::COLLATION{no_accents} = sub {
|
$DBD::SQLite::COLLATION{no_accents} = sub {
|
||||||
my ( $a, $b ) = map lc, @_;
|
my ( $a, $b ) = map lc, @_;
|
||||||
tr[珞砌裙銜韭鴉<EFBFBD>瀅<EFBFBD><EFBFBD><EFBFBD><EFBFBD>馞<EFBFBD>]
|
tr[àâáäåãçðèêéëìîíïñòôóöõøùûúüý]
|
||||||
[aaaaaacdeeeeiiiinoooooouuuuy] for $a, $b;
|
[aaaaaacdeeeeiiiinoooooouuuuy] for $a, $b;
|
||||||
$a cmp $b;
|
$a cmp $b;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue