diff options
author | Karl Berry <karl@freefriends.org> | 2019-12-16 18:16:30 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-12-16 18:16:30 +0000 |
commit | 1c398269e793c4732b0be99d99602b65bbdc1a22 (patch) | |
tree | 1d35051180e502c97bc9f606ea982c8657f937e5 /Build/source/texk/kpathsea | |
parent | de7f45879c92c00942b701fb706d874f2f993450 (diff) |
bibtex: reallocate on long field values instead of giving up
git-svn-id: svn://tug.org/texlive/trunk@53145 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/texmf.cnf | 14 |
2 files changed, 13 insertions, 7 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index f184c7e3a79..dab9c798ccc 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,9 @@ +2019-12-16 Karl Berry <karl@freefriends.org> + + * texmf.cnf (glob_str_size): increase from 20,000 to 200,000 + for bibtex-bigauth.test (q.v.). + (ent_str_size, max_strings.bibtex*): increase these while we're here. + 2019-11-03 Karl Berry <karl@tug.org> * progname.c: remove nowadays-useless register declarations. diff --git a/Build/source/texk/kpathsea/texmf.cnf b/Build/source/texk/kpathsea/texmf.cnf index f91606496fc..9de38920fd5 100644 --- a/Build/source/texk/kpathsea/texmf.cnf +++ b/Build/source/texk/kpathsea/texmf.cnf @@ -858,13 +858,13 @@ screen_width.mf = 1664 screen_depth.mf = 1200 % BibTeX only (max_strings also determines hash_size and hash_prime). -ent_str_size = 250 -glob_str_size = 20000 -max_strings.bibtex = 100000 -max_strings.bibtex8 = 100000 -max_strings.bibtexu = 100000 -max_strings.pbibtex = 100000 -max_strings.upbibtex = 100000 +ent_str_size = 500 +glob_str_size = 200000 +max_strings.bibtex = 200000 +max_strings.bibtex8 = 200000 +max_strings.bibtexu = 200000 +max_strings.pbibtex = 200000 +max_strings.upbibtex= 200000 % GFtype only. line_length.gftype = 500 |