* src/assoc.c, src/closure.c, src/gram.c, src/injections.c,

* src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
translate maintainer only messages.
This commit is contained in:
Akim Demaille
2002-09-04 10:18:15 +00:00
parent 3f8237696f
commit 427c0dda0c
9 changed files with 38 additions and 24 deletions

View File

@@ -207,8 +207,8 @@ table_grow (size_t desired)
table_size *= 2;
if (trace_flag & trace_resource)
fprintf (stderr, _("growing table and check from: %lu to %lu\n"),
(unsigned long) old_size, (unsigned long) table_size);
fprintf (stderr, "growing table and check from: %d to %d\n",
old_size, table_size);
table = XREALLOC (table, base_t, table_size);
check = XREALLOC (check, base_t, table_size);
@@ -754,7 +754,7 @@ pack_vector (vector_number_t vector)
high = loc;
if (j < BASE_MIN || BASE_MAX < j)
fatal (_("base_t too small to hold %d\n"), j);
fatal ("base_t too small to hold %d\n", j);
return j;
}
}