Constants changed to more sensible values.
This commit is contained in:
parent
981bea82f4
commit
7fd4e395da
2 changed files with 4 additions and 4 deletions
|
@ -61,9 +61,9 @@ STATIC p_gram copyrule();
|
||||||
|
|
||||||
a_init() {
|
a_init() {
|
||||||
term_info.i_esize = sizeof (t_term);
|
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_esize = sizeof (t_link);
|
||||||
link_info.i_incr = 50;
|
link_info.i_incr = 100;
|
||||||
name_init();
|
name_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -59,9 +59,9 @@ p_mem new_mem();
|
||||||
|
|
||||||
name_init() {
|
name_init() {
|
||||||
token_info.i_esize = sizeof (t_token);
|
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_esize = sizeof (t_nont);
|
||||||
nont_info.i_incr = 25;
|
nont_info.i_incr = 100;
|
||||||
search(TERMINAL,"EOFILE",ENTERING);
|
search(TERMINAL,"EOFILE",ENTERING);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue