diff options
author | Karl Berry <karl@freefriends.org> | 2024-08-19 14:12:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2024-08-19 14:12:58 +0000 |
commit | 4250d68fd61e0ce9c46acd2c20de0c8d6cf87678 (patch) | |
tree | f7ee1e4de8be07862d524879e3123902027e89b2 /Build | |
parent | ae77274e844b547bb402af35d5b4fc684d5482a3 (diff) |
avoid double space in not_ok msg
git-svn-id: svn://tug.org/texlive/trunk@72065 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/tex-file.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index cbcee62f617..7f1108ee6c9 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,8 @@ +2024-08-19 Karl Berry <karl@freefriends.org> + + * tex-file.c (kpathsea_name_ok) <not_ok>: avoid spurious double space + in message. + 2024-07-01 Karl Berry <karl@tug.org> * texmf.cnf (shell_escape_commands): restore extractbb, diff --git a/Build/source/texk/kpathsea/tex-file.c b/Build/source/texk/kpathsea/tex-file.c index a748920d250..b7097d4d687 100644 --- a/Build/source/texk/kpathsea/tex-file.c +++ b/Build/source/texk/kpathsea/tex-file.c @@ -1367,7 +1367,7 @@ kpathsea_name_ok (kpathsea kpse, const_string fname, const_string check_var, not_ok: /* Some test failed. */ if (!silent) - fprintf (stderr, "\n%s: Not %s %s (%s = %s; %s extended check).\n", + fprintf (stderr, "\n%s: Not %s %s (%s = %s; %sextended check).\n", kpse->invocation_name, ok_type_name[action], fname, check_var, open_choice, extended ? "" : "no "); if (expanded_fname) free ((void *) expanded_fname); |