mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@912 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3c89a278e3
commit
91f513b52a
3 changed files with 10 additions and 0 deletions
|
@ -1,8 +1,16 @@
|
|||
Wed Aug 30 14:19:07 2000 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* parse.y (node_assign): should support NODE_CVASGN2 too.
|
||||
|
||||
Wed Aug 30 11:31:47 2000 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
|
||||
|
||||
* ext/Win32API/Win32API.c (Win32API_initialize): add the
|
||||
arguments checking.
|
||||
|
||||
Wed Aug 30 10:29:40 2000 Masahiro Tomita <tommy@tmtm.org>
|
||||
|
||||
* io.c (rb_f_p): flush output buffer.
|
||||
|
||||
Tue Aug 29 16:29:15 2000 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* parse.y (assignable): remove NODE_CVASGN3.
|
||||
|
|
1
io.c
1
io.c
|
@ -2128,6 +2128,7 @@ rb_f_p(argc, argv)
|
|||
for (i=0; i<argc; i++) {
|
||||
rb_p(argv[i]);
|
||||
}
|
||||
fflush(stdout);
|
||||
return Qnil;
|
||||
}
|
||||
|
||||
|
|
1
parse.y
1
parse.y
|
@ -4092,6 +4092,7 @@ node_assign(lhs, rhs)
|
|||
case NODE_MASGN:
|
||||
case NODE_CDECL:
|
||||
case NODE_CVDECL:
|
||||
case NODE_CVASGN2:
|
||||
lhs->nd_value = rhs;
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue