diff options
author | Karl Berry <karl@freefriends.org> | 2021-05-07 17:49:50 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-05-07 17:49:50 +0000 |
commit | 073d12a1d9d861cc43ac68b1301728f09cce3711 (patch) | |
tree | 855692088d3b16bee764c065f71984b5a03003d5 /Build | |
parent | af9df03e853a6f1bc4745504f3a7ac18c160c85a (diff) |
increase sup_save_size to 30m and active save_save to 200k
git-svn-id: svn://tug.org/texlive/trunk@59114 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/texmf.cnf | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/tex.ch | 2 |
4 files changed, 13 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index ca7feaea609..5a2805024c3 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,8 @@ +2021-05-07 Karl Berry <karl@freefriends.org> + + * texmf.cnf (save_size): re-increase to 200000 + with parallel change to tex.ch. + 2021-04-22 Karl Berry <karl@freefriends.org> * doc/kpathsea.texi (TeX directory structure): link to diff --git a/Build/source/texk/kpathsea/texmf.cnf b/Build/source/texk/kpathsea/texmf.cnf index 7a4f4030777..d0c9475a5b8 100644 --- a/Build/source/texk/kpathsea/texmf.cnf +++ b/Build/source/texk/kpathsea/texmf.cnf @@ -832,7 +832,7 @@ nest_size = 500 % simultaneous semantic levels (e.g., groups) max_in_open = 15 % simultaneous input files and error insertions, % also applies to MetaPost param_size = 10000 % simultaneous macro parameters, also applies to MP -save_size = 80000 % for saving values outside current group +save_size = 200000 % for saving values outside current group stack_size = 5000 % simultaneous input sources % Limit on recursive expansion calls so TeX has a chance to quit nicely diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index f0d2b4a88eb..e0fbb789ab1 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,5 +1,11 @@ 2021-05-07 Karl Berry <karl@freefriends.org> + * tex.ch (sup_save_size): increase to 30000000 + (could be max_halfword). Found by Christian Schenk, + tex-live 18 Mar 2021 18:39:04. + +2021-05-07 Karl Berry <karl@freefriends.org> + * doc/web2c.texi, * doc/ref.txi: typos. diff --git a/Build/source/texk/web2c/tex.ch b/Build/source/texk/web2c/tex.ch index 124c79ad40c..d11f42da855 100644 --- a/Build/source/texk/web2c/tex.ch +++ b/Build/source/texk/web2c/tex.ch @@ -259,7 +259,7 @@ versions of the program. @!sup_param_size = 32767; @!inf_save_size = 600; -@!sup_save_size = 80000; +@!sup_save_size = 30000000; @!inf_stack_size = 200; @!sup_stack_size = 30000; |