mkconstants.rb: remove empty comments

* ext/etc/mkconstants.rb: remove empty comments, defaut_proc isn't
  called by accessing nil-assigned elements, and the same content
  is useless.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46712 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-07-06 02:42:55 +00:00
Родитель 09e36e478f
Коммит 24e4104675
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -35,7 +35,7 @@ opt.def_option('-H FILE', 'specify output header file') {|filename|
opt.parse!
h = {}
COMMENTS = Hash.new { |h, name| h[name] = name }
COMMENTS = {}
DATA.each_line {|s|
next if /\A\s*(\#|\z)/ =~ s
@ -48,7 +48,7 @@ DATA.each_line {|s|
next
end
h[name] = default_value
COMMENTS[name] = comment
COMMENTS[name] = comment if comment
}
DEFS = h.to_a
@ -82,7 +82,9 @@ EOS
ERB.new(<<'EOS', nil, '%').def_method(Object, "gen_const_defs")
% each_const {|name, default_value|
#if defined(<%=name%>)
/* <%= COMMENTS[name] %> */
% if comment = COMMENTS[name]
/* <%=comment%> */
% end
rb_define_const(mod, <%=c_str name.sub(/\A_*/, '')%>, INTEGER2NUM(<%=name%>));
#endif
% }