From b6ee29c9c0e86a083f3b11fde8d54ffec9f8d27f Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 29 Jul 2011 11:29:49 +0000 Subject: * ext/socket/mkconstants.rb: use whitespaces as a separator. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/mkconstants.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/socket/mkconstants.rb b/ext/socket/mkconstants.rb index b772648cce..96370fa64e 100644 --- a/ext/socket/mkconstants.rb +++ b/ext/socket/mkconstants.rb @@ -40,7 +40,7 @@ h = {} COMMENTS = Hash.new { |h, name| h[name] = name } DATA.each_line {|s| - name, default_value, comment = s.chomp.split "\t" + name, default_value, comment = s.chomp.split(/\s+/, 3) next unless name && name[0] != ?# default_value = nil if default_value == 'nil' -- cgit v1.2.3