-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* eval.c (rb_call0): must not clear ruby_current_node, or
backtrace cannot be genetated. * intern.h (ruby_yyparse): rather than yyparse(). * parse.y (yylex): nextc() returns -1 at end of input, not 0. * parse.y (newline_node): reduce deplicated newline node. * parse.y (literal_concat): get rid of warning. * parse.y (new_evstr): fixed junk code. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2884 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
5 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
Mon Sep 23 23:22:43 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* eval.c (rb_call0): must not clear ruby_current_node, or | ||
backtrace cannot be genetated. | ||
|
||
* intern.h (ruby_yyparse): rather than yyparse(). | ||
|
||
* parse.y (yylex): nextc() returns -1 at end of input, not 0. | ||
|
||
* parse.y (newline_node): reduce deplicated newline node. | ||
|
||
* parse.y (literal_concat): get rid of warning. | ||
|
||
* parse.y (new_evstr): fixed junk code. | ||
|
||
Mon Sep 23 19:57:52 2002 WATANABE Hirofumi <[email protected]> | ||
|
||
* configure.in (RUBY_MINGW32): new macro. check for the MinGW | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#define RUBY_VERSION "1.7.3" | ||
#define RUBY_RELEASE_DATE "2002-09-22" | ||
#define RUBY_RELEASE_DATE "2002-09-23" | ||
#define RUBY_VERSION_CODE 173 | ||
#define RUBY_RELEASE_CODE 20020922 | ||
#define RUBY_RELEASE_CODE 20020923 |