summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/lib
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-08-09 22:48:24 +0000
committerKarl Berry <karl@freefriends.org>2019-08-09 22:48:24 +0000
commitd5f921342b33fcfa1f3abccbf62f2299e3864a5a (patch)
treea934fb63b28ea2f8907d8665971237856729cdbf /Build/source/texk/web2c/lib
parent1e65b600fc5eced1b4305a908c0203a982416c7e (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/web2c/lib')
-rw-r--r--Build/source/texk/web2c/lib/ChangeLog3
-rw-r--r--Build/source/texk/web2c/lib/texmfmp.c6
2 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog
index 521081517f6..e2c07edff47 100644
--- a/Build/source/texk/web2c/lib/ChangeLog
+++ b/Build/source/texk/web2c/lib/ChangeLog
@@ -1,5 +1,8 @@
2019-08-09 Karl Berry <karl@freefriends.org>
+ * texmfmp.c (texmf_yesno): no longer static, since we call it
+ from tex.ch.
+
* texmfmp.c: doc fixes; most "fixme"s were nothing that we ever
need to fix at this late date.
diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c
index 7a281d24760..6f704ab7ca1 100644
--- a/Build/source/texk/web2c/lib/texmfmp.c
+++ b/Build/source/texk/web2c/lib/texmfmp.c
@@ -709,8 +709,10 @@ static void parse_options (int, string *);
/* Try to figure out if we have been given a filename. */
static string get_input_file_name (void);
-/* Get a true/false value for a variable from texmf.cnf and the environment. */
-static boolean
+/* Get a true/false value for a variable from texmf.cnf and the
+ environment. Not static because we call it from tex.ch. */
+
+boolean
texmf_yesno(const_string var)
{
string value = kpse_var_value (var);