summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-21 05:19:34 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-21 05:19:34 +0000
commit79d17322248c0c53f77122aa42ea6b73bff78f1a (patch)
tree21587d0732928b9e230871e2a38a4acc0e7ca8ae /parse.y
parent906694c55809fa3813d6659852f573feebc68819 (diff)
downloadruby-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
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 6e0eae01e..18f1668e5 100644
--- a/parse.y
+++ b/parse.y
@@ -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;