summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build/source/texk/kpathsea/ChangeLog5
-rw-r--r--Build/source/texk/kpathsea/kpsewhich.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog
index 8b7bf6c4601..5f767599494 100644
--- a/Build/source/texk/kpathsea/ChangeLog
+++ b/Build/source/texk/kpathsea/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-03 Karl Berry <karl@tug.org>
+
+ * kpsewhich.c (find_format): remove dvipdfmx.cfg, since there is
+ no special path for it, and add texglyphlist.txt.
+
2009-08-15 Karl Berry <karl@tug.org>
* texmf.cnf (shell_escape_commands): remove many more,
diff --git a/Build/source/texk/kpathsea/kpsewhich.c b/Build/source/texk/kpathsea/kpsewhich.c
index 9c7fafb340f..a4cf22ce528 100644
--- a/Build/source/texk/kpathsea/kpsewhich.c
+++ b/Build/source/texk/kpathsea/kpsewhich.c
@@ -102,8 +102,6 @@ find_format (kpathsea kpse, string name, boolean is_filename)
ret = user_format;
} else if (FILESTRCASEEQ (name, "config.ps")) {
ret = kpse_dvips_config_format;
- } else if (FILESTRCASEEQ (name, "dvipdfmx.cfg")) {
- ret = kpse_program_text_format;
} else if (FILESTRCASEEQ (name, "fmtutil.cnf")) {
ret = kpse_web2c_format;
} else if (FILESTRCASEEQ (name, "glyphlist.txt")) {
@@ -114,6 +112,8 @@ find_format (kpathsea kpse, string name, boolean is_filename)
ret = kpse_fontmap_format;
} else if (FILESTRCASEEQ (name, "pdftex.cfg")) {
ret = kpse_pdftex_config_format;
+ } else if (FILESTRCASEEQ (name, "texglyphlist.txt")) {
+ ret = kpse_fontmap_format;
} else if (FILESTRCASEEQ (name, "texmf.cnf")) {
ret = kpse_cnf_format;
} else if (FILESTRCASEEQ (name, "updmap.cfg")) {