diff options
author | Karl Berry <karl@freefriends.org> | 2011-01-06 22:37:56 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-01-06 22:37:56 +0000 |
commit | b9e63b0394790cb72b3ae93eef6e877f57d46817 (patch) | |
tree | ea14d5a4579ce91515d5da6e81107aa6dbaf0061 | |
parent | a48a185a1221edaddaeae01a91ae2f2171edceeb (diff) |
(LUA_SUFFIXES): add .tlu
git-svn-id: svn://tug.org/texlive/trunk@20953 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/tex-file.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index 36ebf1e3013..25a14b8fda5 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,8 @@ +2011-01-06 Karl Berry <karl@tug.org> + + * tex-file.c (LUA_SUFFIXES): add .tlu, + luatex mail from t34www, 6 Jan 2011 22:04:45. + 2011-01-01 Karl Berry <karl@tug.org> * texmf.cnf (TEXLIVE_WINDOWS_TRY_EXTERNAL_PERL): doc fixes. diff --git a/Build/source/texk/kpathsea/tex-file.c b/Build/source/texk/kpathsea/tex-file.c index 3370186d6a9..0e069721f53 100644 --- a/Build/source/texk/kpathsea/tex-file.c +++ b/Build/source/texk/kpathsea/tex-file.c @@ -761,7 +761,8 @@ kpathsea_init_format (kpathsea kpse, kpse_file_format_type format) break; case kpse_lua_format: INIT_FORMAT ("lua", DEFAULT_LUAINPUTS, LUA_ENVS); -#define LUA_SUFFIXES ".luc", ".luctex", ".texluc", ".lua", ".luatex", ".texlua" +#define LUA_SUFFIXES \ + ".lua", ".luatex", ".luc", ".luctex", ".texlua", ".texluc", ".tlu" SUFFIXES (LUA_SUFFIXES); FMT_INFO.suffix_search_only = true; break; |