summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/racc/parser-text.rb2
-rw-r--r--lib/racc/parser.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/racc/parser-text.rb b/lib/racc/parser-text.rb
index c40736bc99..7090c6a01a 100644
--- a/lib/racc/parser-text.rb
+++ b/lib/racc/parser-text.rb
@@ -326,7 +326,7 @@ module Racc
# It must 'yield' the token, which format is [TOKEN-SYMBOL, VALUE].
class_eval %{
def yyparse(recv, mid)
- #{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), true)
+ #{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), false)
end
}
diff --git a/lib/racc/parser.rb b/lib/racc/parser.rb
index e1133f7590..df94e85eb7 100644
--- a/lib/racc/parser.rb
+++ b/lib/racc/parser.rb
@@ -324,7 +324,7 @@ module Racc
# It must 'yield' the token, which format is [TOKEN-SYMBOL, VALUE].
class_eval %{
def yyparse(recv, mid)
- #{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), true)
+ #{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), false)
end
}