diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-06 00:03:06 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-06 00:03:06 +0000 |
commit | 73a8afe6743dcdb6fadbc03cbef5ff99131bcba2 (patch) | |
tree | c7f22eacdbab9a065db34ab4896999d7c7651486 | |
parent | e067a32f6256bd1e3e41d03918b828c72ecd607b (diff) | |
download | ruby-73a8afe6743dcdb6fadbc03cbef5ff99131bcba2.tar.gz |
merge revision(s) 18318:
* parse.y (yylex): 8 and 9 in octal integer should cause compile
error. [ruby-dev:35729]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@21349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | parse.y | 4 | ||||
-rw-r--r-- | version.h | 8 |
3 files changed, 12 insertions, 5 deletions
@@ -1,3 +1,8 @@ +Tue Jan 6 09:02:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * parse.y (yylex): 8 and 9 in octal integer should cause compile + error. [ruby-dev:35729] + Mon Jan 5 11:12:39 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * eval.c (rb_thread_schedule): runs deferred finalizers. @@ -3903,7 +3903,8 @@ yylex() nondigit = c; continue; } - if (c < '0' || c > '7') break; + if (c < '0' || c > '9') break; + if (c > '7') goto invalid_octal; nondigit = 0; tokadd(c); } while ((c = nextc()) != -1); @@ -3920,6 +3921,7 @@ yylex() } } if (c > '7' && c <= '9') { + invalid_octal: yyerror("Illegal octal digit"); } else if (c == '.' || c == 'e' || c == 'E') { @@ -1,15 +1,15 @@ #define RUBY_VERSION "1.8.6" -#define RUBY_RELEASE_DATE "2009-01-05" +#define RUBY_RELEASE_DATE "2009-01-06" #define RUBY_VERSION_CODE 186 -#define RUBY_RELEASE_CODE 20090105 -#define RUBY_PATCHLEVEL 290 +#define RUBY_RELEASE_CODE 20090106 +#define RUBY_PATCHLEVEL 291 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_TEENY 6 #define RUBY_RELEASE_YEAR 2009 #define RUBY_RELEASE_MONTH 1 -#define RUBY_RELEASE_DAY 5 +#define RUBY_RELEASE_DAY 6 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; |