diff options
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/tangle.ch | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index b405bebcc88..f1222f1d0ce 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,6 +1,10 @@ 2007-12-19 Karl Berry <karl@tug.org> - * config.h (LONGINTEGER_TYPE): swtich to off_t. + * tangle.ch (max_bytes): increase to 65535. + + * config.h (LONGINTEGER_TYPE): switch to off_t. + + (Both of these from Martin S.) 2007-10-23 Karl Berry <karl@tug.org> diff --git a/Build/source/texk/web2c/tangle.ch b/Build/source/texk/web2c/tangle.ch index 33def5815ae..773dc4ec890 100644 --- a/Build/source/texk/web2c/tangle.ch +++ b/Build/source/texk/web2c/tangle.ch @@ -64,12 +64,16 @@ procedure initialize; @!buf_size=3000; {maximum length of input line} @z @x +@!max_bytes=45000; {|1/ww| times the number of bytes in identifiers, + strings, and module names; must be less than 65536} @!max_toks=50000; {|1/zz| times the number of bytes in compressed \PASCAL\ code; must be less than 65536} @!max_names=4000; {number of identifiers, strings, module names; must be less than 10240} @!max_texts=2000; {number of replacement texts, must be less than 10240} @y +@!max_bytes=65535; {|1/ww| times the number of bytes in identifiers, + strings, and module names; must be less than 65536} @!max_toks=65535; {|1/zz| times the number of bytes in compressed \PASCAL\ code; must be less than 65536} @!max_names=10000; {number of identifiers, strings, module names; |