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:
@@ -314,7 +314,7 @@ void
|
||||
generate_states (void)
|
||||
{
|
||||
allocate_storage ();
|
||||
new_closure (nritems);
|
||||
closure_new (nritems);
|
||||
|
||||
/* Create the initial state. The 0 at the lhs is the index of the
|
||||
item of this initial rule. */
|
||||
@@ -345,7 +345,7 @@ generate_states (void)
|
||||
}
|
||||
|
||||
/* discard various storage */
|
||||
free_closure ();
|
||||
closure_free ();
|
||||
free_storage ();
|
||||
|
||||
/* Set up STATES. */
|
||||
|
||||
Reference in New Issue
Block a user