* eval.c (assign): convert mrhs to mvalue.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2002-04-16 00:02:49 +00:00
parent 7edb39fbfa
commit 23288f8674
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Tue Apr 16 08:59:50 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
* eval.c (assign): convert mrhs to mvalue.
Mon Apr 15 09:27:31 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* pack.c (pack_unpack): should treat 'U' in character unit, not in

2
eval.c
View File

@ -3946,7 +3946,7 @@ assign(self, lhs, val, pcall)
break;
case NODE_MASGN:
massign(self, lhs, val, pcall);
massign(self, lhs, svalue_to_mvalue(val), pcall);
break;
case NODE_CALL:

View File

@ -1,4 +1,4 @@
#define RUBY_VERSION "1.7.2"
#define RUBY_RELEASE_DATE "2002-04-15"
#define RUBY_RELEASE_DATE "2002-04-16"
#define RUBY_VERSION_CODE 172
#define RUBY_RELEASE_CODE 20020415
#define RUBY_RELEASE_CODE 20020416