Home | History | Annotate | Download | only in ed

Lines Matching refs:active_last

148 long active_last;		/* index of last active line in active_list */
151 long active_ndx; /* active_list index (modulo active_last) */
157 if (active_last + 1 > active_size) {
172 active_list[active_last++] = lp;
185 for (i = 0; i < active_last; i++)
188 active_ndx = INC_MOD(active_ndx, active_last - 1);
190 } else active_ndx = INC_MOD(active_ndx, active_last - 1);
198 while (active_ptr < active_last && active_list[active_ptr] == NULL)
200 return (active_ptr < active_last) ? active_list[active_ptr++] : NULL;
209 active_size = active_last = active_ptr = active_ndx = 0;