diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-10 01:39:24 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-10 01:39:24 +0000 |
| commit | 455cb372cbbe0866d213d99866cbf324802a1f41 (patch) | |
| tree | 49ff0eaefef57b5e29a37e7cb3515d77d8e9fae8 /ChangeLog | |
| parent | 8666a92b19f5483f8ec2a86997f70f214bf1adcb (diff) | |
| download | ruby-455cb372cbbe0866d213d99866cbf324802a1f41.tar.gz ruby-455cb372cbbe0866d213d99866cbf324802a1f41.tar.xz ruby-455cb372cbbe0866d213d99866cbf324802a1f41.zip | |
* bignum.c (rb_big_mul0): multiply two numbers (x, y) without
normalizing the result. x should be a big number.
[ruby-dev:26778]
* bignum.c (rb_big_pow): use rb_big_mul0() instead of
rb_big_mul().
* array.c (rb_ary_or, rb_ary_and, rb_ary_plus, rb_ary_diff):
revert the change on 2005-08-03. Set operation on other item
should have in separate methods.
* parse.y (shadowing_lvar_gen): warn when arguments shadows
external local variables.
* parse.y (f_opt): optional arguments should not clobber external
local variables.
* parse.y (f_rest_arg): rest arguments should not clobber external
local variables.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -1,3 +1,25 @@ +Wed Aug 10 10:38:50 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * bignum.c (rb_big_mul0): multiply two numbers (x, y) without + normalizing the result. x should be a big number. + [ruby-dev:26778] + + * bignum.c (rb_big_pow): use rb_big_mul0() instead of + rb_big_mul(). + + * array.c (rb_ary_or, rb_ary_and, rb_ary_plus, rb_ary_diff): + revert the change on 2005-08-03. Set operation on other item + should have in separate methods. + + * parse.y (shadowing_lvar_gen): warn when arguments shadows + external local variables. + + * parse.y (f_opt): optional arguments should not clobber external + local variables. + + * parse.y (f_rest_arg): rest arguments should not clobber external + local variables. + Wed Aug 10 10:29:40 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tk/lib/tk.rb: fix bug on handling __ruby2val_optkeys(). @@ -14,6 +36,11 @@ Tue Aug 9 21:53:17 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * eval.c (formal_assign): let default values override arguments to zsuper. fixed: [ruby-dev:26743] +Tue Aug 9 20:30:19 2005 Tadashi Saito <shiba@mail2.accsnet.ne.jp> + + * bignum.c (rb_big_coerce): allow bignum x bignum coercing. + [ruby-dev:26778] + Tue Aug 9 15:12:04 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tk/tcltklib.c: remove dangerous 'rb_jump_tag's. |
