Suppress numbered parameter warnings

This commit is contained in:
Nobuyoshi Nakada 2019-10-18 14:59:26 +09:00
parent 095cdca15b
commit e50b8949fa
No known key found for this signature in database
GPG Key ID: 4BC7D6DF58D8DF60

View File

@ -82,7 +82,7 @@ combining_class = {} # constant to allow use in Integer#to_UTF8
# read the file 'UnicodeData.txt'
vpath.foreach("#{InputDataDir}/UnicodeData.txt") do |line|
codepoint, name, _2, char_class, _4, decomposition, *_rest = line.split(";")
codepoint, name, _2_, char_class, _4_, decomposition, *_rest = line.split(";")
case decomposition
when /^[0-9A-F]/