]> git.saurik.com Git - bison.git/blobdiff - src/LR0.c
* src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
[bison.git] / src / LR0.c
index 9ce53e06a0f20b85c135f4d1d36e600b1f804bbd..0d7edff5aff1bfc6c5ed4dda1c546b30fbd77bf3 100644 (file)
--- a/src/LR0.c
+++ b/src/LR0.c
@@ -240,7 +240,7 @@ get_state (symbol_number_t symbol, size_t core_size, item_number_t *core)
 | Use the information computed by new_itemsets to find the state    |
 | numbers reached by each shift transition from STATE.              |
 |                                                                   |
-| SHIFTSET is set up as a vector of state numbers of those states.  |
+| TRANSITIONSET is set up as a vector of state numbers of those states.  |
 `------------------------------------------------------------------*/
 
 static void
@@ -336,7 +336,7 @@ set_states (void)
         reduced to 0.  */
       state_t *state = this->state;
       if (!state->shifts)
-       state_shifts_set (state, 0, 0);
+       state_transitions_set (state, 0, 0);
       if (!state->errs)
        state->errs = errs_new (0);
       if (!state->reductions)
@@ -387,7 +387,7 @@ generate_states (void)
 
       /* Create the shifts structures for the shifts to those states,
         now that the state numbers transitioning to are known.  */
-      state_shifts_set (state, nshifts, shiftset);
+      state_transitions_set (state, nshifts, shiftset);
 
       /* States are queued when they are created; process them all.
         */