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 | 79d17322248c0c53f77122aa42ea6b73bff78f1a (patch) | |
| tree | 21587d0732928b9e230871e2a38a4acc0e7ca8ae | |
| parent | 906694c55809fa3813d6659852f573feebc68819 (diff) | |
| download | ruby-79d17322248c0c53f77122aa42ea6b73bff78f1a.tar.gz ruby-79d17322248c0c53f77122aa42ea6b73bff78f1a.tar.xz ruby-79d17322248c0c53f77122aa42ea6b73bff78f1a.zip | |
* parse.y: fixed compile error
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9978 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -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; |
