mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-20 01:33:03 +00:00
* src/muscle_tab.c (muscle_m4_output): Must return TRUE for
hash_do_for_each.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2002-05-06 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* src/muscle_tab.c (muscle_m4_output): Must return TRUE for
|
||||||
|
hash_do_for_each.
|
||||||
|
|
||||||
|
|
||||||
2002-05-06 Akim Demaille <akim@epita.fr>
|
2002-05-06 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* src/LR0.c (new_state, get_state): Instead of using the global
|
* src/LR0.c (new_state, get_state): Instead of using the global
|
||||||
|
|||||||
@@ -97,11 +97,12 @@ muscle_find (const char *key)
|
|||||||
/* Output the definition of all the current muscles into a list of
|
/* Output the definition of all the current muscles into a list of
|
||||||
m4_defines. */
|
m4_defines. */
|
||||||
|
|
||||||
static void
|
static int
|
||||||
muscle_m4_output (muscle_entry_t *entry, FILE *out)
|
muscle_m4_output (muscle_entry_t *entry, FILE *out)
|
||||||
{
|
{
|
||||||
fprintf (out, "m4_define([b4_%s],\n", entry->key);
|
fprintf (out, "m4_define([b4_%s],\n", entry->key);
|
||||||
fprintf (out, " [[%s]])\n\n\n", entry->value);
|
fprintf (out, " [[%s]])\n\n\n", entry->value);
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user