* src/derives.c, src/print.c, src/reduce.c: To ease the

translation, move some `n' out of the translated strings.
This commit is contained in:
Akim Demaille
2000-10-02 10:21:47 +00:00
parent 89cab50df1
commit 444c570aad
4 changed files with 30 additions and 9 deletions

View File

@@ -1,3 +1,9 @@
2000-10-02 Akim Demaille <akim@epita.fr>
* src/derives.c, src/print.c, src/reduce.c: To ease the
translation, move some `\n' out of the translated strings.
2000-10-02 Akim Demaille <akim@epita.fr> 2000-10-02 Akim Demaille <akim@epita.fr>
The location tracking mechanism is precious for parse error The location tracking mechanism is precious for parse error

View File

@@ -40,7 +40,9 @@ print_derives (void)
int i; int i;
short *sp; short *sp;
printf (_("\n\n\nDERIVES\n\n")); fputs ("\n\n\n", stdout);
printf (_("DERIVES"));
fputs ("\n\n", stdout);
for (i = ntokens; i < nsyms; i++) for (i = ntokens; i < nsyms; i++)
{ {

View File

@@ -194,7 +194,9 @@ print_actions (int state)
static void static void
print_state (int state) print_state (int state)
{ {
fprintf (foutput, _("\n\nstate %d\n\n"), state); fputs ("\n\n", foutput);
fprintf (foutput, _("state %d"), state);
fputs ("\n\n", foutput);
print_core (state); print_core (state);
print_actions (state); print_actions (state);
} }
@@ -222,7 +224,9 @@ print_grammar (void)
int column = 0; int column = 0;
/* rule # : LHS -> RHS */ /* rule # : LHS -> RHS */
fputs (_("\nGrammar\n"), foutput); putc ('\n', foutput);
fputs (_("Grammar"), foutput);
putc ('\n', foutput);
for (i = 1; i <= nrules; i++) for (i = 1; i <= nrules; i++)
/* Don't print rules disabled in reduce_grammar_tables. */ /* Don't print rules disabled in reduce_grammar_tables. */
if (rlhs[i] >= 0) if (rlhs[i] >= 0)
@@ -238,7 +242,9 @@ print_grammar (void)
} }
/* TERMINAL (type #) : rule #s terminal is on RHS */ /* TERMINAL (type #) : rule #s terminal is on RHS */
fputs (_("\nTerminals, with rules where they appear\n\n"), foutput); fputs ("\n", foutput);
fputs (_("Terminals, with rules where they appear"), foutput);
fputs ("\n\n", foutput);
fprintf (foutput, "%s (-1)\n", tags[0]); fprintf (foutput, "%s (-1)\n", tags[0]);
if (translations) if (translations)
{ {
@@ -286,7 +292,9 @@ print_grammar (void)
fprintf (foutput, "%s\n", buffer); fprintf (foutput, "%s\n", buffer);
} }
fputs (_("\nNonterminals, with rules where they appear\n\n"), foutput); fputs ("\n", foutput);
fputs (_("Nonterminals, with rules where they appear"), foutput);
fputs ("\n\n", foutput);
for (i = ntokens; i <= nsyms - 1; i++) for (i = ntokens; i <= nsyms - 1; i++)
{ {
int left_count = 0, right_count = 0; int left_count = 0, right_count = 0;

View File

@@ -401,7 +401,8 @@ print_results (void)
if (nuseless_nonterminals > 0) if (nuseless_nonterminals > 0)
{ {
fprintf (foutput, _("Useless nonterminals:\n\n")); fputs (_("Useless nonterminals:"), foutput);
fputs ("\n\n", foutput);
for (i = ntokens; i < nsyms; i++) for (i = ntokens; i < nsyms; i++)
if (!BITISSET (V, i)) if (!BITISSET (V, i))
fprintf (foutput, " %s\n", tags[i]); fprintf (foutput, " %s\n", tags[i]);
@@ -413,7 +414,9 @@ print_results (void)
{ {
if (!b) if (!b)
{ {
fprintf (foutput, _("\n\nTerminals which are not used:\n\n")); fputs ("\n\n", foutput);
fprintf (foutput, _("Terminals which are not used:"));
fputs ("\n\n", foutput);
b = TRUE; b = TRUE;
} }
fprintf (foutput, " %s\n", tags[i]); fprintf (foutput, " %s\n", tags[i]);
@@ -422,7 +425,9 @@ print_results (void)
if (nuseless_productions > 0) if (nuseless_productions > 0)
{ {
fprintf (foutput, _("\n\nUseless rules:\n\n")); fputs ("\n\n", foutput);
fprintf (foutput, _("Useless rules:"));
fputs ("\n\n", foutput);
for (i = 1; i <= nrules; i++) for (i = 1; i <= nrules; i++)
{ {
if (!BITISSET (P, i)) if (!BITISSET (P, i))
@@ -438,7 +443,7 @@ print_results (void)
} }
} }
if (nuseless_nonterminals > 0 || nuseless_productions > 0 || b) if (nuseless_nonterminals > 0 || nuseless_productions > 0 || b)
fprintf (foutput, "\n\n"); fputs ("\n\n", foutput);
} }
#if 0 /* XXX currently unused. */ #if 0 /* XXX currently unused. */