[前][次][番号順一覧][スレッド一覧]

ruby-changes:58313

From: Kazuhiro <ko1@a...>
Date: Fri, 18 Oct 2019 20:27:11 +0900 (JST)
Subject: [ruby-changes:58313] 58e2ca31db (master): Use `_` instead of `_n_`

https://git.ruby-lang.org/ruby.git/commit/?id=58e2ca31db

From 58e2ca31dbbae9bb54917c9b3cc88fc138454eeb Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Fri, 18 Oct 2019 20:24:36 +0900
Subject: Use `_` instead of `_n_`


diff --git a/template/unicode_norm_gen.tmpl b/template/unicode_norm_gen.tmpl
index c25d210..a16712f 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 https://github.com/ruby/ruby/blob/trunk/template/unicode_norm_gen.tmpl#L82
 
 # 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]/
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]