diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-01-08 07:02:26 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-01-08 07:02:26 +0000 |
commit | 10b2abc85fa281ce79016bdda61c99803528dd01 (patch) | |
tree | c63d0e66d2eecf6a07d782bf9a26154dbe92b62f | |
parent | d43b289d0aae97e10e4108356a69f3f52c25c83f (diff) | |
download | ruby-10b2abc85fa281ce79016bdda61c99803528dd01.tar.gz ruby-10b2abc85fa281ce79016bdda61c99803528dd01.tar.xz ruby-10b2abc85fa281ce79016bdda61c99803528dd01.zip |
* eval.c (rb_add_method): clear replaced method from the cache.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | eval.c | 3 | ||||
-rw-r--r-- | version.h | 4 |
3 files changed, 8 insertions, 3 deletions
@@ -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 @@ -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* @@ -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 |