summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-09-03 20:05:55 +0000
committerKarl Berry <karl@freefriends.org>2009-09-03 20:05:55 +0000
commit337f542cb30f28b7795c9095b0d829e6ce55bc01 (patch)
tree520b09ebe20dd0d2df9368af8107c55422481cb1 /Build
parent13206e82ceb62a452957a98d7439a6395636ba29 (diff)
remove nonfunctional special case for dvipdfmx.cfg, add texglyphlist.txt
git-svn-id: svn://tug.org/texlive/trunk@15037 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-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")) {