summaryrefslogtreecommitdiff
path: root/enc
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-04 10:52:54 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-04 10:52:54 +0000
commite1f69b39ae7b4dbd91525b38ba229bdc5d9a4fcf (patch)
tree31a86172bc65ac777899a79cafc051c4aec6f65d /enc
parentdddbd864d1cb9119363caea98bb2ba8968d10828 (diff)
enc/iso_8859_13.c: Added three missing lower/upper-case
character pairs (from Kimihito Matsui) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52884 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc')
-rw-r--r--enc/iso_8859_13.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/enc/iso_8859_13.c b/enc/iso_8859_13.c
index 11b3dda1c9..5607013c80 100644
--- a/enc/iso_8859_13.c
+++ b/enc/iso_8859_13.c
@@ -158,6 +158,10 @@ is_code_ctype(OnigCodePoint code, unsigned int ctype, OnigEncoding enc ARG_UNUSE
}
static const OnigPairCaseFoldCodes CaseFoldMap[] = {
+ { 0xa8, 0xb8 },
+ { 0xaa, 0xba },
+ { 0xaf, 0xbf },
+
{ 0xc0, 0xe0 },
{ 0xc1, 0xe1 },
{ 0xc2, 0xe2 },