From e55466442618ab707e03e9f1cc8e2bd75a2f6681 Mon Sep 17 00:00:00 2001 From: dave Date: Sat, 27 Dec 2003 15:50:03 +0000 Subject: Some Ruby source uses Init_xxx (lower case for the class name) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/parsers/parse_c.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/rdoc') diff --git a/lib/rdoc/parsers/parse_c.rb b/lib/rdoc/parsers/parse_c.rb index 83fd3a0209..26b3ae4b56 100644 --- a/lib/rdoc/parsers/parse_c.rb +++ b/lib/rdoc/parsers/parse_c.rb @@ -185,7 +185,7 @@ module RDoc def find_class_comment(class_name, class_meth) comment = nil if @body =~ %r{((?>/\*.*?\*/\s+)) - (static\s+)?void\s+Init_#{class_name}\s*\(\)}xm + (static\s+)?void\s+Init_#{class_name}\s*\(\)}xmi comment = $1 elsif @body =~ %r{Document-(class|module):\s#{class_name}.*?\n((?>.*?\*/))}m comment = $2 @@ -332,6 +332,8 @@ module RDoc meth_obj.add_token(RubyToken::Token.new(1,1).set_text(body_text)) meth_obj.comment = mangle_comment(comment) + else + $stderr.puts "No definition for #{meth_name}" end end -- cgit v1.2.3