aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-10-18 14:59:26 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-10-18 14:59:26 +0900
commite50b8949fad96a30226e4122172822a2a4c7301d (patch)
treee5179d22bd1f59ad8aaa3da2ee3b60ee447cb7a0 /template
parent095cdca15b430fb5973b1540d92a29598552adba (diff)
downloadruby-e50b8949fad96a30226e4122172822a2a4c7301d.tar.gz
Suppress numbered parameter warnings
Diffstat (limited to 'template')
-rw-r--r--template/unicode_norm_gen.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/unicode_norm_gen.tmpl b/template/unicode_norm_gen.tmpl
index c0044dddbc..c25d21089b 100644
--- a/template/unicode_norm_gen.tmpl
+++ b/template/unicode_norm_gen.tmpl
@@ -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]/