* src/gram.c (rule_rhs_print): Do not print new line anymore.
(rule_print): Make it static.
* src/closure.c, src/derives.c, src/gram.c: Adjust.
{
fprintf (stderr, "\t\t%3d ", r);
rule_rhs_print (&rules[r], stderr);
{
fprintf (stderr, "\t\t%3d ", r);
rule_rhs_print (&rules[r], stderr);
+ fprintf (stderr, "\n");
}
}
fprintf (stderr, "\n\n");
}
}
fprintf (stderr, "\n\n");
{
fprintf (stderr, "\t\t%3d ", (*rp)->user_number);
rule_rhs_print (*rp, stderr);
{
fprintf (stderr, "\t\t%3d ", (*rp)->user_number);
rule_rhs_print (*rp, stderr);
+ fprintf (stderr, "\n");
item_number *rp;
for (rp = r->rhs; *rp >= 0; rp++)
fprintf (out, " %s", symbols[*rp]->tag);
item_number *rp;
for (rp = r->rhs; *rp >= 0; rp++)
fprintf (out, " %s", symbols[*rp]->tag);
- fprintf (out, " /* %s */\n", _("empty"));
+ fprintf (out, " /* %s */", _("empty"));
rule_print (rule *r, FILE *out)
{
fprintf (out, "%s:", r->lhs->tag);
rule_print (rule *r, FILE *out)
{
fprintf (out, "%s:", r->lhs->tag);
first = false;
rule_lhs_print (&rules[r], previous_lhs, out);
rule_rhs_print (&rules[r], out);
first = false;
rule_lhs_print (&rules[r], previous_lhs, out);
rule_rhs_print (&rules[r], out);
previous_lhs = rules[r].lhs;
}
if (!first)
previous_lhs = rules[r].lhs;
}
if (!first)
{
fprintf (out, "%-5d ", r);
rule_print (&rules[r], out);
{
fprintf (out, "%-5d ", r);
rule_print (&rules[r], out);
}
}
fprintf (out, "\n\n");
}
}
fprintf (out, "\n\n");
{
complain_at (rules[r].location, w, "%s: ", message);
rule_print (&rules[r], stderr);
{
complain_at (rules[r].location, w, "%s: ", message);
rule_print (&rules[r], stderr);
+ fprintf (stderr, "\n");
/* Print this rule's RHS on OUT. */
void rule_rhs_print (rule *r, FILE *out);
/* Print this rule's RHS on OUT. */
void rule_rhs_print (rule *r, FILE *out);
-/* Print this rule on OUT. */
-void rule_print (rule *r, FILE *out);
-