debug: no longer generate tabs

* src/closure.c, src/derives.c, src/nullable.c, tests/sets.at: Use
spaces.
This commit is contained in:
Akim Demaille
2012-12-21 16:51:17 +01:00
parent a99ec53eb1
commit 5cd907c478
4 changed files with 75 additions and 78 deletions

View File

@@ -47,7 +47,7 @@ nullable_print (FILE *out)
int i;
fputs ("NULLABLE\n", out);
for (i = ntokens; i < nsyms; i++)
fprintf (out, "\t%s: %s\n", symbols[i]->tag,
fprintf (out, " %s: %s\n", symbols[i]->tag,
nullable[i - ntokens] ? "yes" : "no");
fputs ("\n\n", out);
}