]> git.saurik.com Git - bison.git/commitdiff
(reduce_grammar): Revise error message.
authorRichard M. Stallman <rms@gnu.org>
Sun, 15 Oct 1995 20:18:29 +0000 (20:18 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 15 Oct 1995 20:18:29 +0000 (20:18 +0000)
(print_notices): Remove final `.' from error message.

src/reduce.c

index ba9e1778e58dab8634d01f111744af64a785a2a3..13e62ca357b83c8465cc58a42515ec7516adca7d 100644 (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);
 }