diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-07 02:51:31 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-07 02:51:31 +0000 |
| commit | 9a34aff98c9b84a305c462266be7d7098eb6cd43 (patch) | |
| tree | bd8a040eac8bd343730e29ca006a4a2b99b15670 | |
| parent | 7fb0ec7467f2d594a16ccdb4f5ad9a6c3a32dc20 (diff) | |
| download | ruby-9a34aff98c9b84a305c462266be7d7098eb6cd43.tar.gz ruby-9a34aff98c9b84a305c462266be7d7098eb6cd43.tar.xz ruby-9a34aff98c9b84a305c462266be7d7098eb6cd43.zip | |
* parse.y (arg): tUPLUS no longer works as identity operation any
more. inspired by [ruby-talk:265532].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | parse.y | 7 | ||||
| -rw-r--r-- | version.h | 6 |
3 files changed, 9 insertions, 9 deletions
@@ -1,3 +1,8 @@ +Thu Dec 6 19:48:41 2007 Yukihiro Matsumoto <matz@ruby-lang.org> + + * parse.y (arg): tUPLUS no longer works as identity operation any + more. inspired by [ruby-talk:265532]. + Thu Dec 6 18:22:11 2007 Tanaka Akira <akr@fsij.org> * encoding.c (rb_enc_precise_mbclen): new function for mbclen with @@ -2035,12 +2035,7 @@ arg : lhs '=' arg | tUPLUS arg { /*%%%*/ - if ($2 && nd_type($2) == NODE_LIT) { - $$ = $2; - } - else { - $$ = call_uni_op($2, tUPLUS); - } + $$ = call_uni_op($2, tUPLUS); /*% $$ = dispatch2(unary, ripper_intern("+@"), $2); %*/ @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.9.0" -#define RUBY_RELEASE_DATE "2007-12-06" +#define RUBY_RELEASE_DATE "2007-12-07" #define RUBY_VERSION_CODE 190 -#define RUBY_RELEASE_CODE 20071206 +#define RUBY_RELEASE_CODE 20071207 #define RUBY_PATCHLEVEL 0 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2007 #define RUBY_RELEASE_MONTH 12 -#define RUBY_RELEASE_DAY 6 +#define RUBY_RELEASE_DAY 7 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; |
