(reduce_grammar): Revise error message.

(print_notices): Remove final `.' from error message.
This commit is contained in:
Richard M. Stallman
1995-10-15 20:18:29 +00:00
parent 943819bf46
commit d129c2c0e7

View File

@@ -138,7 +138,7 @@ reduce_grammar ()
print_notices();
if (!BITISSET(N, start_symbol - ntokens))
fatals("Start symbol %s does not derive any sentence.",
fatals("Start symbol %s does not derive any sentence",
tags[start_symbol]);
reduce_grammar_tables();
@@ -593,6 +593,6 @@ print_notices ()
nuseless_productions,
(nuseless_productions == 1 ? "" : "s"));
}
fprintf(stderr, ".\n");
fprintf(stderr, "\n");
fflush(stderr);
}