mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1289a7a11f
commit
4ffb361630
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Aug 23 21:59:38 2001 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
|
||||||
|
|
||||||
|
* enum.c (sort_by_i): fix typo.
|
||||||
|
|
||||||
Thu Aug 23 10:10:59 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Thu Aug 23 10:10:59 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c (is_defined): should not dump core for "defined?(())".
|
* eval.c (is_defined): should not dump core for "defined?(())".
|
||||||
|
|
2
enum.c
2
enum.c
|
@ -208,7 +208,7 @@ sort_by_i(i, memo)
|
||||||
VALUE i;
|
VALUE i;
|
||||||
NODE *memo;
|
NODE *memo;
|
||||||
{
|
{
|
||||||
VALUE e = rb_ary_new3(3, rb_yield(e), INT2NUM(memo->u3.cnt), i);
|
VALUE e = rb_ary_new3(3, rb_yield(i), INT2NUM(memo->u3.cnt), i);
|
||||||
rb_ary_push(memo->u1.value, e);
|
rb_ary_push(memo->u1.value, e);
|
||||||
memo->u3.cnt++;
|
memo->u3.cnt++;
|
||||||
return Qnil;
|
return Qnil;
|
||||||
|
|
Loading…
Add table
Reference in a new issue