summaryrefslogtreecommitdiff
path: root/lib/racc/parser.rb
diff options
context:
space:
mode:
authorMarc-Andre Lafortune <github@marc-andre.ca>2020-08-18 21:26:34 -0400
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-28 18:08:51 +0900
commit245ed57ddc93901e90388cf479968392299d1067 (patch)
tree7c8db450b2db376898a40d3f1001f828edb7bf6c /lib/racc/parser.rb
parent97d1a381e112e843ff014a05a083e42165b7bb01 (diff)
[ruby/racc] Turn debugging off
https://github.com/ruby/racc/commit/872f75cfa7
Diffstat (limited to 'lib/racc/parser.rb')
-rw-r--r--lib/racc/parser.rb2
1 files changed, 1 insertions, 1 deletions
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
}