diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-15 02:33:03 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-15 02:33:03 +0000 |
commit | 525aa2dab68a6992bf0636357a673ae2adf599cc (patch) | |
tree | f4ff80d2d9ce4e1ab60eef7c10c70d8b3faaea5e /bignum.c | |
parent | d50c046da090460fd3b1e54da610d4113a23ef19 (diff) |
* eval.c (rb_yield_0): should not re-submit TAG_BREAK if this
yield is not break destination. [ruby-dev:23197]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r-- | bignum.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1583,7 +1583,7 @@ rb_big_pow(x, y) break; case T_FIXNUM: - yy = NUM2LONG(y); + yy = FIX2LONG(y); if (yy > 0) { VALUE z = x; |