diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-21 05:19:34 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-21 05:19:34 +0000 |
commit | db37bfadb2eebb53170b93a92c81cef0c6011aaa (patch) | |
tree | 21587d0732928b9e230871e2a38a4acc0e7ca8ae /parse.y | |
parent | 9e9c43f170ebd8028fa84afcb28f35459b4b9b75 (diff) |
* parse.y: fixed compile error
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9978 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,6 +122,7 @@ static int in_single = 0; static int in_def = 0; static int compile_for_eval = 0; static ID cur_mid = 0; +static int command_start = Qtrue; static NODE *cond(); static NODE *logop(); @@ -2561,7 +2562,6 @@ yyerror(msg) } static int heredoc_end; -static int command_start = Qtrue; int ruby_in_compile = 0; int ruby__end__seen; |