From 51525e12b8e61979567ccf12da300a11237ba9a3 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 30 Aug 2006 09:39:47 +0000 Subject: * lib/rdoc/parsers/parse_c.rb (RDoc::C_Parser::handle_method): rdoc documents C module methods as instance methods. a patch in [ruby-core:08536]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10800 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/parsers/parse_c.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/rdoc/parsers') diff --git a/lib/rdoc/parsers/parse_c.rb b/lib/rdoc/parsers/parse_c.rb index 3185da7719..a1ea9a5da7 100644 --- a/lib/rdoc/parsers/parse_c.rb +++ b/lib/rdoc/parsers/parse_c.rb @@ -523,7 +523,8 @@ module RDoc type = "singleton_method" end meth_obj = AnyMethod.new("", meth_name) - meth_obj.singleton = type == "singleton_method" + meth_obj.singleton = + %w{singleton_method module_function}.include?(type) p_count = (Integer(param_count) rescue -1) -- cgit v1.2.3