diff options
author | Karl Berry <karl@freefriends.org> | 2008-05-22 23:44:45 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-05-22 23:44:45 +0000 |
commit | dcaa1e025c4c324ac97ac0d6e4be4b04e9f8dee2 (patch) | |
tree | 064803cbbe140ea9090b0030f88734d76006ea87 /Build/source/texk/kpathsea | |
parent | 9489a2813f36d7ada949c78ae693d032669b78d7 (diff) |
might as well recognize glyphlist.txt and pdfglyphlist.txt too
git-svn-id: svn://tug.org/texlive/trunk@8298 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea')
-rw-r--r-- | Build/source/texk/kpathsea/kpsewhich.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/kpsewhich.c b/Build/source/texk/kpathsea/kpsewhich.c index 4623649592d..91531189c94 100644 --- a/Build/source/texk/kpathsea/kpsewhich.c +++ b/Build/source/texk/kpathsea/kpsewhich.c @@ -104,8 +104,12 @@ find_format P2C(string, name, boolean, is_filename) ret = kpse_program_text_format; } else if (FILESTRCASEEQ (name, "fmtutil.cnf")) { ret = kpse_web2c_format; + } else if (FILESTRCASEEQ (name, "glyphlist.txt")) { + ret = kpse_fontmap_format; } else if (FILESTRCASEEQ (name, "mktex.cnf")) { ret = kpse_web2c_format; + } else if (FILESTRCASEEQ (name, "pdfglyphlist.txt")) { + ret = kpse_fontmap_format; } else if (FILESTRCASEEQ (name, "pdftex.cfg")) { ret = kpse_pdftex_config_format; } else if (FILESTRCASEEQ (name, "updmap.cfg")) { |