From d2d4589aebebd37080c8d96b6373d43283412f77 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 8 Jun 2001 14:20:58 +0000 Subject: * gc.c (Init_stack): avoid __builtin_frame_address(2) to retrieve stack bottom line. * st.c (numhash): should shuffle bits by dividing by prime number. * eval.c (rb_eval): multiple assignment behavior fixed, which results "*a = nil" makes "a == []" now. * eval.c (rb_f_require): should set SCOPE_PUBLIC before calling dln_load(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 1 + 1 file changed, 1 insertion(+) (limited to 'variable.c') diff --git a/variable.c b/variable.c index dfb4b169c..b93dacf3d 100644 --- a/variable.c +++ b/variable.c @@ -73,6 +73,7 @@ fc_i(key, value, res) if (!rb_is_const_id(key)) return ST_CONTINUE; + printf("fc: %s\n", rb_id2name(key)); if (value == res->klass) { res->path = fc_path(res, key); return ST_STOP; -- cgit