summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2011-06-08 14:18:13 +0000
committerTaco Hoekwater <taco@elvenkind.com>2011-06-08 14:18:13 +0000
commit9c65967bf03dda21ef97fac326ed05ef0456c270 (patch)
treed2e71729a5e2628df9797a7c9e5019b0270ccacc /Master/texmf-dist/tex
parent8d97d9a07fc23be6ad290612432d458c2cb9d461 (diff)
fix recursion for context mkiv runtime paths
git-svn-id: svn://tug.org/texlive/trunk@22867 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex')
-rw-r--r--Master/texmf-dist/tex/context/base/data-exp.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/context/base/data-exp.lua b/Master/texmf-dist/tex/context/base/data-exp.lua
index e8138968252..a0a85d07f58 100644
--- a/Master/texmf-dist/tex/context/base/data-exp.lua
+++ b/Master/texmf-dist/tex/context/base/data-exp.lua
@@ -95,9 +95,12 @@ local function splitpathexpr(str, newlist, validate) -- I couldn't resist lpeggi
str = lpegmatch(stripper_1,str)
if validate then
for s in gmatch(str,"[^,]+") do
+ local restoreslashes = false
+ if gmatch(s, "//$") then restoreslashes = true end
s = validate(s)
if s then
n = n + 1 ; t[n] = s
+ if restoreslashes and not find(s, "//$") then t[n] = t[n] .. '//' end
end
end
else