diff options
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/gftype.ch | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index 188c303b81c..07fbc37f2ab 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,7 @@ +2009-09-04 Karl Berry <karl@tug.org> + + * gftype.ch (line_length, max_row, max_col): increase to 500. + 2009-08-12 Karl Berry <karl@tug.org> * tex.ch (1.11): doc fix. diff --git a/Build/source/texk/web2c/gftype.ch b/Build/source/texk/web2c/gftype.ch index 9eb5ecdde85..a24e1486e9d 100644 --- a/Build/source/texk/web2c/gftype.ch +++ b/Build/source/texk/web2c/gftype.ch @@ -67,12 +67,18 @@ begin a non-local goto, which we can't use in C. @z -@x [5] Remove |terminal_line_length|. +@x [5] Remove |terminal_line_length|, increase others. @<Constants...@>= @!terminal_line_length=150; {maximum number of characters input in a single line of input from the terminal} +@!line_length=79; {\\{xxx} strings will not produce lines longer than this} +@!max_row=79; {vertical extent of pixel image array} +@!max_col=79; {horizontal extent of pixel image array} @y @<Constants...@>= +@!line_length=500; {\\{xxx} strings will not produce lines longer than this} +@!max_row=500; {vertical extent of pixel image array} +@!max_col=500; {horizontal extent of pixel image array} @z @x [7] Remove jump_out, and make `abort' end with a newline. |