commit | 5d323defe4dab940494002e80c69cfb36d204a49 | [log] [tgz] |
---|---|---|
author | nhtshot <nhtshot@gmail.com> | Mon Feb 23 15:05:32 2015 -0600 |
committer | Damien George <damien.p.george@gmail.com> | Mon Feb 23 21:36:05 2015 +0000 |
tree | 3e0db35d59f5a6c0d24276ae491563a809592b7a | |
parent | 71ebd4b7f0b88fc0ceb36d8c2464a5114470f5a0 [diff] [blame] |
py: Update parse.c&mpconfig.h to reflect rename of mp_lexer_show_token. This function is only used when DEBUG_PRINTERS and USE_RULE_NAME are enabled.
diff --git a/py/parse.c b/py/parse.c index 6223968..3f70431 100644 --- a/py/parse.c +++ b/py/parse.c
@@ -782,7 +782,7 @@ // debugging: print the rule name that failed and the token printf("rule: %s\n", rule->rule_name); #if MICROPY_DEBUG_PRINTERS - mp_token_show(lex); + mp_lexer_show_token(lex); #endif #endif }