summaryrefslogtreecommitdiff
path: root/enc/unicode/case-folding.rb
diff options
context:
space:
mode:
authorKazuki Tsujimoto <kazuki@callcc.net>2020-04-05 18:24:59 +0900
committerKazuki Tsujimoto <kazuki@callcc.net>2020-04-05 18:24:59 +0900
commitb25ef4bf7051e747548ee664df6f8b544051ac51 (patch)
tree6051c70bc34e1692c4c40bd1699989cc7941da5c /enc/unicode/case-folding.rb
parentcab9788e0ca2c41a13e482a4a9924b5a968284fe (diff)
Suppress warnings: reserved for numbered parameter
Diffstat (limited to 'enc/unicode/case-folding.rb')
-rw-r--r--[-rwxr-xr-x]enc/unicode/case-folding.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/enc/unicode/case-folding.rb b/enc/unicode/case-folding.rb
index 362d6ebfd9..4a29fdebf7 100755..100644
--- a/enc/unicode/case-folding.rb
+++ b/enc/unicode/case-folding.rb
@@ -232,7 +232,7 @@ class CaseMapping
@version = nil
IO.foreach(File.join(mapping_directory, 'UnicodeData.txt'), mode: "rb") do |line|
next if line =~ /^</
- code, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11, upper, lower, title = line.chomp.split ';'
+ code, _, _, _, _, _, _, _, _, _, _, _, upper, lower, title = line.chomp.split ';'
unless upper and lower and title and (upper+lower+title)==''
@mappings[code] = MapItem.new(code, upper, lower, title)
end