diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-13 15:43:02 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-13 15:43:02 +0000 |
| commit | b558a48dec0f350f25abdc6917dab27102213c22 (patch) | |
| tree | 5ba7806e9888994ea744e2be5b47bb3b0f401913 /eval.c | |
| parent | f1b727df3f29d79e94b3305a0d07fb25ee057eb1 (diff) | |
| download | ruby-b558a48dec0f350f25abdc6917dab27102213c22.tar.gz ruby-b558a48dec0f350f25abdc6917dab27102213c22.tar.xz ruby-b558a48dec0f350f25abdc6917dab27102213c22.zip | |
* array.c (rb_ary_pop): may cause realloc oscillation. a patch
from MORITA Naoyuki <mlgetter at kidou.sakura.ne.jp>.
[ruby-dev:29028]
* parse.y (then): we'd like to reserve colon here for the future.
warning added.
* ruby.h: export rb_cMethod. [ruby-talk:201259]
* ext/bigdecimal/bigdecimal.c: Allows '_' to appear within
digits. [ruby-dev:28872]
* ext/bigdecimal/lib/bigdecimal/util.rb: Bug in to_r reported by
[ruby-list:42533] fixed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
| -rw-r--r-- | eval.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -234,7 +234,8 @@ static VALUE rb_f_binding _((VALUE)); static void rb_f_END _((void)); static VALUE rb_f_block_given_p _((void)); static VALUE block_pass _((VALUE,NODE*)); -static VALUE rb_cMethod; + +VALUE rb_cMethod; static VALUE method_call _((int, VALUE*, VALUE)); static VALUE rb_cUnboundMethod; static VALUE umethod_bind _((VALUE, VALUE)); |
