diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | parse.y | 2 | ||||
| -rw-r--r-- | version.h | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Thu Jul 2 07:53:44 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * parse.y (parser_yylex): fixed wrong variable. + Tue Jun 30 18:19:07 2009 Yukihiro Matsumoto <matz@ruby-lang.org> * hash.c (rb_hash_hash): documentation fix. a patch from @@ -7056,7 +7056,7 @@ parser_yylex(struct parser_params *parser) } else { int c0 = nextc(); - if (c == -1 || !ISDIGIT(c0)) { + if (c0 == -1 || !ISDIGIT(c0)) { pushback(c0); goto decode_num; } @@ -1,6 +1,6 @@ #define RUBY_VERSION "1.9.1" #define RUBY_RELEASE_DATE "2009-07-12" -#define RUBY_PATCHLEVEL 215 +#define RUBY_PATCHLEVEL 216 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 1 |
