From 27ea12bc77a1c9902da4474604bde2ca25b905f6 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 25 Jun 2003 05:28:24 +0000 Subject: * variable.c (autoload_delete): should delete Qundef from iv_tbl. (ruby-bugs-ja PR#504) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 9 +++++++-- lib/mkmf.rb | 2 ++ variable.c | 3 ++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0b8baf62a..6333546a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,12 @@ +Wed Jun 25 00:14:30 2003 Yukihiro Matsumoto + + * variable.c (autoload_delete): should delete Qundef from iv_tbl. + (ruby-bugs-ja PR#504) + Tue Jun 24 14:22:41 2003 why the lucky stiff - * lib/yaml/types.rb: replaced Kernel::Hash reference with Object::Hash - from [ruby-talk:74270] + * lib/yaml/types.rb: replaced Kernel::Hash reference with Object::Hash + from [ruby-talk:74270] Tue Jun 24 17:59:30 2003 Nobuyoshi Nakada diff --git a/lib/mkmf.rb b/lib/mkmf.rb index b0b3817b5..551fa4a5a 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -17,6 +17,7 @@ unless defined? $configure_args end for arg in Shellwords::shellwords(args) arg, val = arg.split('=', 2) + next unless arg if arg.sub!(/^(?!--)/, '--') val or next arg.downcase! @@ -26,6 +27,7 @@ unless defined? $configure_args end for arg in ARGV arg, val = arg.split('=', 2) + next unless arg if arg.sub!(/^(?!--)/, '--') val or next arg.downcase! diff --git a/variable.c b/variable.c index 5c65c0425..eb1f3e32b 100644 --- a/variable.c +++ b/variable.c @@ -1170,12 +1170,13 @@ autoload_delete(mod, id) { VALUE val, file = Qnil; + st_delete(RCLASS(mod)->iv_tbl, &id, 0); if (st_lookup(RCLASS(mod)->iv_tbl, autoload, &val)) { struct st_table *tbl = check_autoload_table(val); if (!st_delete(tbl, &id, &file)) file = Qnil; - if (!tbl->num_entries) { + if (tbl->num_entries == 0) { DATA_PTR(val) = 0; st_free_table(tbl); id = autoload; -- cgit