diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-30 05:20:36 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-30 05:20:36 +0000 |
| commit | 4de774b161ef8be74b882e6a05b76acdc4eb470f (patch) | |
| tree | 65e9c2b25bfa2a7c2f27e67a729e2f06104802b9 | |
| parent | 12d471731c768f55ed92edf54fe04fbfd9f6b9d6 (diff) | |
| download | ruby-4de774b161ef8be74b882e6a05b76acdc4eb470f.tar.gz ruby-4de774b161ef8be74b882e6a05b76acdc4eb470f.tar.xz ruby-4de774b161ef8be74b882e6a05b76acdc4eb470f.zip | |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@912 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | io.c | 1 | ||||
| -rw-r--r-- | parse.y | 1 |
3 files changed, 10 insertions, 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. @@ -2128,6 +2128,7 @@ rb_f_p(argc, argv) for (i=0; i<argc; i++) { rb_p(argv[i]); } + fflush(stdout); return Qnil; } @@ -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; |
