mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-21 02:03:03 +00:00
style: rename closure_* functions as closure_*
This is more consistent with the other files. * closure.h, closure.c (new_closure, free_closure): Rename as... (closure_new, closure_free): this. Adjust dependencies.
This commit is contained in:
@@ -517,7 +517,7 @@ print_xml (void)
|
||||
/* print grammar */
|
||||
print_grammar (out, level + 1);
|
||||
|
||||
new_closure (nritems);
|
||||
closure_new (nritems);
|
||||
no_reduce_set = bitset_create (ntokens, BITSET_FIXED);
|
||||
|
||||
/* print automaton */
|
||||
@@ -531,7 +531,7 @@ print_xml (void)
|
||||
xml_puts (out, level + 1, "</automaton>");
|
||||
|
||||
bitset_free (no_reduce_set);
|
||||
free_closure ();
|
||||
closure_free ();
|
||||
|
||||
xml_puts (out, 0, "</bison-xml-report>");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user