ruby-changes:63173
From: Marc-Andre <ko1@a...>
Date: Mon, 28 Sep 2020 18:09:48 +0900 (JST)
Subject: [ruby-changes:63173] 245ed57ddc (master): [ruby/racc] Turn debugging off
https://git.ruby-lang.org/ruby.git/commit/?id=245ed57ddc From 245ed57ddc93901e90388cf479968392299d1067 Mon Sep 17 00:00:00 2001 From: Marc-Andre Lafortune <github@m...> Date: Tue, 18 Aug 2020 21:26:34 -0400 Subject: [ruby/racc] Turn debugging off https://github.com/ruby/racc/commit/872f75cfa7 diff --git a/lib/racc/parser-text.rb b/lib/racc/parser-text.rb index c40736b..7090c6a 100644 --- a/lib/racc/parser-text.rb +++ b/lib/racc/parser-text.rb @@ -326,7 +326,7 @@ module Racc https://github.com/ruby/ruby/blob/trunk/lib/racc/parser-text.rb#L326 # 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 e1133f7..df94e85 100644 --- a/lib/racc/parser.rb +++ b/lib/racc/parser.rb @@ -324,7 +324,7 @@ module Racc https://github.com/ruby/ruby/blob/trunk/lib/racc/parser.rb#L324 # 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 } -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/