diff options
author | Karl Berry <karl@freefriends.org> | 2007-07-15 00:17:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-07-15 00:17:42 +0000 |
commit | e66e2b69bc912c75aeaa0bd0b32b90ab687fb6da (patch) | |
tree | 58a195e561b1d727e6b9f226c31632a7807f86f5 /Build/source/texk/web2c/alephdir | |
parent | db3cb6f85ee7c6dfd9d5f2db2fd43d27d7985bc9 (diff) |
end of name check, sync constants; from Akira
git-svn-id: svn://tug.org/texlive/trunk@4587 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/alephdir')
-rw-r--r-- | Build/source/texk/web2c/alephdir/com16bit-rc2.ch | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Build/source/texk/web2c/alephdir/com16bit-rc2.ch b/Build/source/texk/web2c/alephdir/com16bit-rc2.ch index 096aaa027a2..4c5de6ec550 100644 --- a/Build/source/texk/web2c/alephdir/com16bit-rc2.ch +++ b/Build/source/texk/web2c/alephdir/com16bit-rc2.ch @@ -200,28 +200,28 @@ if ini_version then @!sup_strings_free = sup_max_strings; @!inf_buf_size = 500; -@!sup_buf_size = 200000; +@!sup_buf_size = 30000000; @!inf_nest_size = 40; -@!sup_nest_size = 400; +@!sup_nest_size = 4000; @!inf_max_in_open = 6; @!sup_max_in_open = 127; @!inf_param_size = 60; -@!sup_param_size = 600; +@!sup_param_size = 6000; @!inf_save_size = 600; @!sup_save_size = 80000; @!inf_stack_size = 200; -@!sup_stack_size = 3000; +@!sup_stack_size = 30000; @!inf_dvi_buf_size = 800; @!sup_dvi_buf_size = 65536; @!inf_pool_size = 32000; -@!sup_pool_size = 10000000; +@!sup_pool_size = 40000000; @!inf_pool_free = 1000; @!sup_pool_free = sup_pool_size; @!inf_string_vacancies = 8000; @@ -1079,7 +1079,7 @@ if area_delimiter<>0 then begin s:=str_start(str_ptr); t:=str_start(str_ptr)+area_delimiter; j:=s; - while (not must_quote) and (j<>t) do begin + while (not must_quote) and (j<t) do begin must_quote:=str_pool[j]=" "; incr(j); end; if must_quote then begin @@ -1097,7 +1097,7 @@ s:=str_start(str_ptr)+area_delimiter; if ext_delimiter=0 then t:=pool_ptr else t:=str_start(str_ptr)+ext_delimiter-1; must_quote:=false; j:=s; -while (not must_quote) and (j<>t) do begin +while (not must_quote) and (j<t) do begin must_quote:=str_pool[j]=" "; incr(j); end; if must_quote then begin @@ -1114,7 +1114,7 @@ if ext_delimiter<>0 then begin t:=pool_ptr; must_quote:=false; j:=s; - while (not must_quote) and (j<>t) do begin + while (not must_quote) and (j<t) do begin must_quote:=str_pool[j]=" "; incr(j); end; if must_quote then begin @@ -1177,19 +1177,19 @@ begin must_quote:=false; if a<>0 then begin j:=str_start(a); - while (not must_quote) and (j<>str_start(a+1)) do begin + while (not must_quote) and (j<str_start(a+1)) do begin must_quote:=str_pool[j]=" "; incr(j); end; end; if n<>0 then begin j:=str_start(n); - while (not must_quote) and (j<>str_start(n+1)) do begin + while (not must_quote) and (j<str_start(n+1)) do begin must_quote:=str_pool[j]=" "; incr(j); end; end; if e<>0 then begin j:=str_start(e); - while (not must_quote) and (j<>str_start(e+1)) do begin + while (not must_quote) and (j<str_start(e+1)) do begin must_quote:=str_pool[j]=" "; incr(j); end; end; |