1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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]/