X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/c8f002c7d3407d5c91a5882466916160a72aa8c4..b25d88f6d2e2f4b59927aacecdc0a9e44a34b5d9:/src/print.c diff --git a/src/print.c b/src/print.c index 6fbe2c9a..ae2ead9a 100644 --- a/src/print.c +++ b/src/print.c @@ -366,7 +366,7 @@ print_reductions (FILE *out, state_t *state) if (redp->rules[j] != default_rule) print_reduction (out, width, symbols[i]->tag, - redp->rules[j], TRUE); + redp->rules[j], true); else defaulted = 1; count++; @@ -376,18 +376,18 @@ print_reductions (FILE *out, state_t *state) if (defaulted) print_reduction (out, width, symbols[i]->tag, - default_rule, TRUE); + default_rule, true); defaulted = 0; print_reduction (out, width, symbols[i]->tag, - redp->rules[j], FALSE); + redp->rules[j], false); } } } if (default_rule) print_reduction (out, width, - _("$default"), default_rule, TRUE); + _("$default"), default_rule, true); } @@ -400,11 +400,11 @@ static void print_actions (FILE *out, state_t *state) { /* Print shifts. */ - print_transitions (state, out, TRUE); + print_transitions (state, out, true); print_errs (out, state); print_reductions (out, state); /* Print gotos. */ - print_transitions (state, out, FALSE); + print_transitions (state, out, false); } @@ -422,7 +422,10 @@ print_state (FILE *out, state_t *state) print_actions (out, state); if ((report_flag & report_solved_conflicts) && state->solved_conflicts) - fputs (state->solved_conflicts, out); + { + fputc ('\n', out); + fputs (state->solved_conflicts, out); + } } /*-----------------------------------------.