mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* parse.y (stmt): returns non zero. [ruby-dev:36633]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
852dc6d663
commit
9bcbc90605
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Sep 30 16:53:55 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (stmt): returns non zero. [ruby-dev:36633]
|
||||
|
||||
Tue Sep 30 13:19:01 2008 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* test/rubygems/test_gem_installer.rb: remove extra call to setup to
|
||||
|
|
2
parse.y
2
parse.y
|
@ -979,7 +979,7 @@ stmt : keyword_alias fitem {lex_state = EXPR_FNAME;} fitem
|
|||
$4);
|
||||
/* NEW_PREEXE($4)); */
|
||||
/* local_pop(); */
|
||||
$$ = 0;
|
||||
$$ = NEW_BEGIN(0);
|
||||
/*%
|
||||
$$ = dispatch1(BEGIN, $4);
|
||||
%*/
|
||||
|
|
Loading…
Reference in a new issue