1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (rb_add_method): clear replaced method from the cache.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2002-01-08 07:02:26 +00:00
parent dcbb422253
commit 1a101d775a
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Tue Jan 8 15:54:02 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
* eval.c (rb_add_method): clear replaced method from the cache.
Mon Jan 7 12:38:47 2002 Tanaka Akira <akr@m17n.org>
* lib/time.rb (Time#xmlschema): new optional argument

3
eval.c
View file

@ -229,7 +229,8 @@ rb_add_method(klass, mid, node, noex)
}
if (OBJ_FROZEN(klass)) rb_error_frozen("class/module");
body = NEW_METHOD(node, noex);
st_insert(RCLASS(klass)->m_tbl, mid, body);
if (st_insert(RCLASS(klass)->m_tbl, mid, body))
rb_clear_cache_by_id(mid);
}
static NODE*

View file

@ -1,4 +1,4 @@
#define RUBY_VERSION "1.7.2"
#define RUBY_RELEASE_DATE "2002-01-07"
#define RUBY_RELEASE_DATE "2002-01-08"
#define RUBY_VERSION_CODE 172
#define RUBY_RELEASE_CODE 20020107
#define RUBY_RELEASE_CODE 20020108