summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-07-15 00:17:42 +0000
committerKarl Berry <karl@freefriends.org>2007-07-15 00:17:42 +0000
commite66e2b69bc912c75aeaa0bd0b32b90ab687fb6da (patch)
tree58a195e561b1d727e6b9f226c31632a7807f86f5 /Build
parentdb3cb6f85ee7c6dfd9d5f2db2fd43d27d7985bc9 (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')
-rw-r--r--Build/source/texk/web2c/ChangeLog8
-rw-r--r--Build/source/texk/web2c/alephdir/com16bit-rc2.ch22
-rw-r--r--Build/source/texk/web2c/omegadir/com16bit.ch22
-rw-r--r--Build/source/texk/web2c/tex.ch12
4 files changed, 36 insertions, 28 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog
index b9f2fa9d6c1..42ccc27597a 100644
--- a/Build/source/texk/web2c/ChangeLog
+++ b/Build/source/texk/web2c/ChangeLog
@@ -1,3 +1,11 @@
+2007-07-15 Karl Berry <karl@tug.org>
+
+ * tex.ch,
+ * alephdir/com16bit-rc2.ch,
+ * omegadir/com16bit.ch: fixes from Akira so "tex %" followed
+ by RET is stable. Also sync aleph/omega constants with tex.
+ Mail of 14 Jul 2007 09:35:02.
+
2007-03-30 Karl Berry <karl@tug.org>
* tex.ch (sup_buf_size): increase to 30,000,000 per Hans mail to
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;
diff --git a/Build/source/texk/web2c/omegadir/com16bit.ch b/Build/source/texk/web2c/omegadir/com16bit.ch
index 5214c8b6cae..424d984ce51 100644
--- a/Build/source/texk/web2c/omegadir/com16bit.ch
+++ b/Build/source/texk/web2c/omegadir/com16bit.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;
@@ -1078,7 +1078,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
@@ -1096,7 +1096,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
@@ -1113,7 +1113,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
@@ -1176,19 +1176,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;
diff --git a/Build/source/texk/web2c/tex.ch b/Build/source/texk/web2c/tex.ch
index 49610dc95cb..490c481f9ae 100644
--- a/Build/source/texk/web2c/tex.ch
+++ b/Build/source/texk/web2c/tex.ch
@@ -1934,7 +1934,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
@@ -1952,7 +1952,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
@@ -1969,7 +1969,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
@@ -2032,19 +2032,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;