Move newline in debugging output

This commit is contained in:
Max Brunsfeld 2014-08-25 21:23:29 -07:00
parent 117869e49a
commit 2318691e28

View file

@ -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,