diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2008-04-28 09:22:39 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2008-04-28 09:22:39 +0000 |
commit | bdcf83ff3b443230cfb520d3ab6ee897b866b3b9 (patch) | |
tree | 58177b6c82c72d3e3a7fe6adb7b1b656a645c164 /Build/source/texk/web2c/cwebdir/cweave.w | |
parent | fa4573df058f727832f69f62343bbab96336b3b9 (diff) |
bump limits (for luatex/mplib)
git-svn-id: svn://tug.org/texlive/trunk@7697 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/cwebdir/cweave.w')
-rw-r--r-- | Build/source/texk/web2c/cwebdir/cweave.w | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Build/source/texk/web2c/cwebdir/cweave.w b/Build/source/texk/web2c/cwebdir/cweave.w index 91b8785bfe9..51f67cba562 100644 --- a/Build/source/texk/web2c/cwebdir/cweave.w +++ b/Build/source/texk/web2c/cwebdir/cweave.w @@ -117,23 +117,23 @@ handle \TEX/, so they should be sufficient for most applications of \.{CWEAVE}. If you change |max_bytes|, |max_names|, |hash_size|, or |buf_size| you have to change them also in the file |"common.w"|. -@d max_bytes 90000 /* the number of bytes in identifiers, +@d max_bytes 1000000 /* the number of bytes in identifiers, index entries, and section names */ -@d max_names 4000 /* number of identifiers, strings, section names; +@d max_names 10239 /* number of identifiers, strings, section names; must be less than 10240; used in |"common.w"| */ -@d max_sections 2000 /* greater than the total number of sections */ -@d hash_size 353 /* should be prime */ -@d buf_size 100 /* maximum length of input line, plus one */ -@d longest_name 10000 /* section names and strings shouldn't be longer than this */ +@d max_sections 10239 /* greater than the total number of sections */ +@d hash_size 8501 /* should be prime */ +@d buf_size 1000 /* maximum length of input line, plus one */ +@d longest_name 1000 /* section names and strings shouldn't be longer than this */ @d long_buf_size (buf_size+longest_name) @d line_length 80 /* lines of \TEX/ output have at most this many characters; should be less than 256 */ -@d max_refs 20000 /* number of cross-references; must be less than 65536 */ -@d max_toks 20000 /* number of symbols in \CEE/ texts being parsed; +@d max_refs 65535 /* number of cross-references; must be less than 65536 */ +@d max_toks 65535 /* number of symbols in \CEE/ texts being parsed; must be less than 65536 */ -@d max_texts 4000 /* number of phrases in \CEE/ texts being parsed; +@d max_texts 10239 /* number of phrases in \CEE/ texts being parsed; must be less than 10240 */ -@d max_scraps 2000 /* number of tokens in \CEE/ texts being parsed */ +@d max_scraps 10000 /* number of tokens in \CEE/ texts being parsed */ @d stack_size 400 /* number of simultaneous output levels */ @ The next few sections contain stuff from the file |"common.w"| that must |