diff options
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/web2c/web2c/ChangeLog | 3 | ||||
-rw-r--r-- | Build/source/texk/web2c/web2c/main.c | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/web2c/ChangeLog b/Build/source/texk/web2c/web2c/ChangeLog index 13d3176c546..f115b4dc6c8 100644 --- a/Build/source/texk/web2c/web2c/ChangeLog +++ b/Build/source/texk/web2c/web2c/ChangeLog @@ -1,5 +1,8 @@ 2008-01-12 Karl Berry <karl@tug.org> + * web2c/main.c (main): output next_string_free if debugging. + From Martin, 10 Jan 2008 15:42:42. + * web2c/main.c (max_strings, hash_prime, sym_table_size, unused): increase substantially, per luatex. ntg-pdftex mail from Akira, 10 Jan 2008 23:49:02. diff --git a/Build/source/texk/web2c/web2c/main.c b/Build/source/texk/web2c/web2c/main.c index 0ed55db586d..60a3c8eef84 100644 --- a/Build/source/texk/web2c/web2c/main.c +++ b/Build/source/texk/web2c/web2c/main.c @@ -267,7 +267,10 @@ main P2C(int, argc, string *, argv) xfclose (coerce, coerce_name); if (debug) - fprintf (stderr, "%d symbols.\n", next_sym_free); + { + fprintf (stderr, "%d symbols.\n", next_sym_free); + fprintf (stderr, "%d strings.\n", next_string_free); + } return EXIT_SUCCESS; } |