From 751ab6c6ed529c8624fe2a4123e5995cff96c61e Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 22 Jun 2006 02:49:28 +0000 Subject: * variable.c (rb_mod_name): returns nil for anonymous modules. [ruby-talk:198440] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'variable.c') diff --git a/variable.c b/variable.c index 50f3e092f..95f4743e3 100644 --- a/variable.c +++ b/variable.c @@ -163,7 +163,7 @@ classname(VALUE klass) * call-seq: * mod.name => string * - * Returns the name of the module mod. + * Returns the name of the module mod. Returns nil for anonymous modules. */ VALUE @@ -172,7 +172,7 @@ rb_mod_name(VALUE mod) VALUE path = classname(mod); if (!NIL_P(path)) return rb_str_dup(path); - return rb_str_new(0,0); + return path; } VALUE -- cgit