Skip to content

Commit

Permalink
disable debugging flags by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Aug 26, 2014
1 parent e002107 commit c5359ab
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
Empty file added .gemtest
Empty file.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -2,7 +2,6 @@
*.o
*.so
*.swp
/.gemtest
/pkg
Makefile
lib/racc/parser-text.rb
Expand Down
2 changes: 1 addition & 1 deletion lib/racc/parser.rb
Expand Up @@ -328,7 +328,7 @@ def _racc_do_parse_rb(arg, in_debug)
# RECEIVER#METHOD_ID is a method to get next token.
# It must 'yield' the token, which format is [TOKEN-SYMBOL, VALUE].
def yyparse(recv, mid)
__send__(Racc_YY_Parse_Method, recv, mid, _racc_setup(), true)
__send__(Racc_YY_Parse_Method, recv, mid, _racc_setup(), false)
end

def _racc_yyparse_rb(recv, mid, arg, c_debug)
Expand Down

0 comments on commit c5359ab

Please sign in to comment.