summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-18 17:35:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-18 17:35:18 +0000
commit9c871d5a5ae478a7a1fc7ba97dcd50ba854ab8d0 (patch)
treebd4bc8812b973f8b2f609a1cba27634969c1c55b /parse.y
parent404faedbaab52bdc184eaba2332ec4cae55b7e01 (diff)
* enumerator.c, eval.c, gc.c, parse.y, regparse.c, sjis.c, time.c:
made internal symbols static. [ruby-dev:27435] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9412 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 a5673603d4..8e72318cf3 100644
--- a/parse.y
+++ b/parse.y
@@ -237,7 +237,7 @@ static int parser_yyerror(struct parser_params*, const char*);
static int yylex(void*, void*);
#ifndef RIPPER
-#define yyparse parser_yyparse
+#define yyparse ruby_yyparse
#define yydebug ruby_yydebug
static NODE *cond_gen(struct parser_params*,NODE*);