summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/fontmap.c
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-03-11 18:04:02 +0000
committerKarl Berry <karl@freefriends.org>2012-03-11 18:04:02 +0000
commit51b01aa724ddf077c155ec4d2a79ca21e720b537 (patch)
treec7bbefc61fe784e3fb71ec559bab85a1ef3ef6c2 /Build/source/texk/kpathsea/fontmap.c
parentce3a350555a7f3069c2715b37672f0c0d7f709fe (diff)
prepending kpathsea: to warnings
git-svn-id: svn://tug.org/texlive/trunk@25603 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/fontmap.c')
-rw-r--r--Build/source/texk/kpathsea/fontmap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/kpathsea/fontmap.c b/Build/source/texk/kpathsea/fontmap.c
index 3dce91843dc..e878104188d 100644
--- a/Build/source/texk/kpathsea/fontmap.c
+++ b/Build/source/texk/kpathsea/fontmap.c
@@ -1,7 +1,7 @@
/* fontmap.c: read files for additional font names.
+ Copyright 1993, 1994, 1995, 1996, 1997, 2008, 2011, 2012 Karl Berry.
Copyright 2001, 2002, 2005 Olaf Weber.
- Copyright 1993, 1994, 1995, 1996, 1997, 2008, 2011 Karl Berry.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -107,7 +107,7 @@ map_file_parse (kpathsea kpse, const_string map_filename)
if (STREQ (filename, "include")) {
if (alias == NULL) {
- WARNING2 ("%s:%u: Filename argument for include directive missing",
+ WARNING2 ("kpathsea: %s:%u: Filename argument for include directive missing",
map_filename, map_lineno);
} else {
string include_fname = kpathsea_path_search (kpse,
@@ -117,7 +117,7 @@ map_file_parse (kpathsea kpse, const_string map_filename)
if (include_fname != alias)
free (include_fname);
} else {
- WARNING3 ("%s:%u: Can't find fontname include file `%s'",
+ WARNING3 ("kpathsea: %s:%u: Can't find fontname include file `%s'",
map_filename, map_lineno, alias);
}
free (alias);
@@ -126,7 +126,7 @@ map_file_parse (kpathsea kpse, const_string map_filename)
/* But if we have a filename and no alias, something's wrong. */
} else if (alias == NULL) {
- WARNING3 ("%s:%u: Fontname alias missing for filename `%s'",
+ WARNING3 ("kpathsea: %s:%u: Fontname alias missing for filename `%s'",
map_filename, map_lineno, filename);
free (filename);