Use _ instead of _n_

This commit is contained in:
Kazuhiro NISHIYAMA 2019-10-18 20:24:36 +09:00
parent ddad1fb229
commit 58e2ca31db
No known key found for this signature in database
GPG Key ID: 262ED8DBB4222F7A

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, _, char_class, _, decomposition, *_rest = line.split(";")
case decomposition
when /^[0-9A-F]/