diff options
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/kpathsea/tex-make.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/tex-make.c b/Build/source/texk/kpathsea/tex-make.c index 2f4a3c59aa4..ee5720bad5c 100644 --- a/Build/source/texk/kpathsea/tex-make.c +++ b/Build/source/texk/kpathsea/tex-make.c @@ -159,7 +159,7 @@ maketex P2C(kpse_file_format_type, format, string*, args) string fn; if (!kpse_make_tex_discard_errors) { - fprintf (stderr, "kpathsea: Running"); + fprintf (stderr, "\nkpathsea: Running"); for (s = &args[0]; *s != NULL; s++) fprintf (stderr, " %s", *s); fputc('\n', stderr); @@ -501,7 +501,7 @@ kpse_make_tex P2C(kpse_file_format_type, format, const_string, base) * No doubt some possibilities were overlooked. */ if (base[0] == '-' /* || IS_DIR_SEP(base[0]) */) { - fprintf(stderr, "kpathsea: Illegal fontname `%s': starts with '%c'\n", + fprintf(stderr, "kpathsea: Invalid fontname `%s', starts with '%c'\n", base, base[0]); return NULL; } @@ -513,7 +513,7 @@ kpse_make_tex P2C(kpse_file_format_type, format, const_string, base) && base[i] != '.' && !IS_DIR_SEP(base[i])) { - fprintf(stderr, "kpathsea: Illegal fontname `%s': contains '%c'\n", + fprintf(stderr, "kpathsea: Invalid fontname `%s', contains '%c'\n", base, base[i]); return NULL; } |