mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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:
parent
09e36e478f
commit
24e4104675
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
% }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue