diff options
author | Karl Berry <karl@freefriends.org> | 2019-08-09 22:48:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-08-09 22:48:24 +0000 |
commit | d5f921342b33fcfa1f3abccbf62f2299e3864a5a (patch) | |
tree | a934fb63b28ea2f8907d8665971237856729cdbf /Build/source/texk/kpathsea | |
parent | 1e65b600fc5eced1b4305a908c0203a982416c7e (diff) |
do not log \openout files for original (ini)tex
git-svn-id: svn://tug.org/texlive/trunk@51852 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/texmf.cnf | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index 364bb21abc6..62726b7aff0 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,5 +1,9 @@ 2019-08-09 Karl Berry <karl@freefriends.org> + * texmf.cnf (log_openout): new configuration variable, true + by default for all but tex and initex, to remove one technical + trip incompatibility. Report from David Fuchs. + * cnf.c, * progname.h, * tex-file.c, diff --git a/Build/source/texk/kpathsea/texmf.cnf b/Build/source/texk/kpathsea/texmf.cnf index 6d858529b69..76f92254edb 100644 --- a/Build/source/texk/kpathsea/texmf.cnf +++ b/Build/source/texk/kpathsea/texmf.cnf @@ -695,6 +695,12 @@ parse_first_line = t parse_first_line.tex = f parse_first_line.initex = f +% Normally we mention files created by \openout in the log file, +% but again, trip-compatibility forbids this for (ini)tex. +log_openout = t +log_openout.tex = f +log_openout.initex = f + % Control file:line:error style messages. file_line_error_style = f |