From 1c7f172eca48842ba65a3b1069c92059832bf3cb Mon Sep 17 00:00:00 2001 From: Taco Hoekwater Date: Thu, 10 Jul 2008 09:59:55 +0000 Subject: support tilde expansion in context mkiv git-svn-id: svn://tug.org/texlive/trunk@9426 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/scripts/context/lua/luatools.lua | 3 +++ Master/texmf-dist/scripts/context/lua/mtxrun.lua | 3 +++ 2 files changed, 6 insertions(+) (limited to 'Master/texmf-dist/scripts/context/lua') diff --git a/Master/texmf-dist/scripts/context/lua/luatools.lua b/Master/texmf-dist/scripts/context/lua/luatools.lua index 89e5e0eb4db..35986137950 100644 --- a/Master/texmf-dist/scripts/context/lua/luatools.lua +++ b/Master/texmf-dist/scripts/context/lua/luatools.lua @@ -3739,7 +3739,10 @@ function input.expand_variables(instance) end if not busy then break end end + local homedir = + instance.environment[(os.type == "windows" and 'USERPROFILE') or 'HOME'] or '~' for k,v in pairs(instance.expansions) do + v = v:gsub("^~", homedir) instance.expansions[k] = v:gsub("\\", '/') end end diff --git a/Master/texmf-dist/scripts/context/lua/mtxrun.lua b/Master/texmf-dist/scripts/context/lua/mtxrun.lua index 040214178b8..0fb45cc635b 100644 --- a/Master/texmf-dist/scripts/context/lua/mtxrun.lua +++ b/Master/texmf-dist/scripts/context/lua/mtxrun.lua @@ -5815,7 +5815,10 @@ function input.expand_variables(instance) end if not busy then break end end + local homedir = + instance.environment[(os.type == "windows" and 'USERPROFILE') or 'HOME'] or '~' for k,v in pairs(instance.expansions) do + v = v:gsub("^~", homedir) instance.expansions[k] = v:gsub("\\", '/') end end -- cgit v1.2.3