Constants changed to more sensible values.

This commit is contained in:
ceriel 1986-11-07 16:20:33 +00:00
parent 981bea82f4
commit 7fd4e395da
2 changed files with 4 additions and 4 deletions

View file

@ -61,9 +61,9 @@ STATIC p_gram copyrule();
a_init() {
term_info.i_esize = sizeof (t_term);
term_info.i_incr = 50;
term_info.i_incr = 100;
link_info.i_esize = sizeof (t_link);
link_info.i_incr = 50;
link_info.i_incr = 100;
name_init();
}

View file

@ -59,9 +59,9 @@ p_mem new_mem();
name_init() {
token_info.i_esize = sizeof (t_token);
token_info.i_incr = 25;
token_info.i_incr = 100;
nont_info.i_esize = sizeof (t_nont);
nont_info.i_incr = 25;
nont_info.i_incr = 100;
search(TERMINAL,"EOFILE",ENTERING);
}