1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 1999-09-16 16:11:25 +00:00
parent 9e3d9a2a00
commit 12494013d2
5 changed files with 21 additions and 8 deletions

View file

@ -1,10 +1,22 @@
Fri Sep 17 01:04:25 1999 Yukihiro Matsumoto <matz@netlab.co.jp>
* stable version 1.4.2 released.
Fri Sep 17 00:52:27 1999 Yukihiro Matsumoto <matz@netlab.co.jp>
* parse.y (arg): assignable() may return 0.
Thu Sep 16 20:46:23 1999 WATANABE Hirofumi <watanabe@ase.ptg.sony.co.jp>
* eval.c (rb_eval): was doubly evaluating the return expression.
Thu Sep 16 18:40:08 1999 Yukihiro Matsumoto <matz@netlab.co.jp>
* stable version 1.4.1 released.
Thu Sep 16 11:33:22 1999 WATANABE Hirofumi <watanabe@ase.ptg.sony.co.jp>
* string.c (rb_str_match): should return false.
* string.c (rb_str_match): should return nil.
Wed Sep 15 22:46:37 1999 Yukihiro Matsumoto <matz@netlab.co.jp>

View file

@ -202,6 +202,7 @@ sample/from.rb
sample/fullpath.rb
sample/getopts.test
sample/goodfriday.rb
sample/irb.rb
sample/less.rb
sample/list.rb
sample/list2.rb
@ -217,7 +218,6 @@ sample/occur2.rb
sample/philos.rb
sample/pi.rb
sample/rename.rb
sample/rbc.rb
sample/rcs.awk
sample/rcs.dat
sample/rcs.rb

1
eval.c
View file

@ -2181,7 +2181,6 @@ rb_eval(self, node)
else {
return_value(Qnil);
}
return_value(rb_eval(self, node->nd_stts));
return_check();
JUMP_TAG(TAG_RETURN);
break;

View file

@ -626,7 +626,9 @@ arg : lhs '=' arg
}
else {
$$ = $<node>3;
$$->nd_value = call_op(gettable($1), $2, 1, $4);
if ($$) {
$$->nd_value = call_op(gettable($1),$2,1,$4);
}
}
fixpos($$, $4);
}

View file

@ -1,4 +1,4 @@
#define RUBY_VERSION "1.4.1"
#define RUBY_RELEASE_DATE "1999-09-16"
#define RUBY_VERSION_CODE 141
#define RUBY_RELEASE_CODE 19990916
#define RUBY_VERSION "1.4.2"
#define RUBY_RELEASE_DATE "1999-09-17"
#define RUBY_VERSION_CODE 142
#define RUBY_RELEASE_CODE 19990917