package: fixes

* examples/c++/glr/local.mk, examples/c/glr/local.mk (CLEANFILES):
Complete to fix distcheck.
* src/output.c (merger_output): Obfuscate to pacify syntax-check's
sc_space_before_open_paren.
This commit is contained in:
Akim Demaille
2021-01-16 17:28:31 +01:00
parent 7e0b792d12
commit 4fd2e5c22a
3 changed files with 7 additions and 4 deletions

View File

@@ -554,7 +554,7 @@ merger_output (FILE *out)
int n;
merger_list* p;
for (n = 1, p = merge_functions; p != NULL; n += 1, p = p->next)
fprintf (out, "]b4_call_merger([%d], [%s], [%d])[\n",
fprintf (out, "]b4_call_merger""([%d], [%s], [%d])[\n",
n, p->name, p->sym->content->number);
fputs ("]])\n\n", out);
}