Move newline in debugging output
This commit is contained in:
parent
117869e49a
commit
2318691e28
1 changed files with 4 additions and 3 deletions
|
|
@ -191,9 +191,10 @@ void ts_parser_destroy(TSParser *parser) {
|
|||
ts_stack_delete(&parser->stack);
|
||||
}
|
||||
|
||||
#define DEBUG_PARSE(...) \
|
||||
if (parser->debug) { \
|
||||
fprintf(stderr, "\n" __VA_ARGS__); \
|
||||
#define DEBUG_PARSE(...) \
|
||||
if (parser->debug) { \
|
||||
fprintf(stderr, __VA_ARGS__); \
|
||||
fprintf(stderr, "\n"); \
|
||||
}
|
||||
|
||||
const TSTree *ts_parser_parse(TSParser *parser, TSInput input,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue