summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/l-file.lua
diff options
context:
space:
mode:
authorContext Git Mirror Bot <phg42.2a@gmail.com>2016-04-30 21:47:48 +0200
committerContext Git Mirror Bot <phg42.2a@gmail.com>2016-04-30 21:47:48 +0200
commit0720a3fd156076fc3092927feb0fa0a85122ec6d (patch)
tree63d6975747b9b4d4d91f079602a4967f2aef03e6 /tex/context/base/mkiv/l-file.lua
parent4a649b4a0eff2ba6f292e4891d2749a79b08baf0 (diff)
downloadcontext-0720a3fd156076fc3092927feb0fa0a85122ec6d.tar.gz
2016-04-30 19:04:00
Diffstat (limited to 'tex/context/base/mkiv/l-file.lua')
-rw-r--r--tex/context/base/mkiv/l-file.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tex/context/base/mkiv/l-file.lua b/tex/context/base/mkiv/l-file.lua
index 7ed6370f2..b6822e954 100644
--- a/tex/context/base/mkiv/l-file.lua
+++ b/tex/context/base/mkiv/l-file.lua
@@ -436,7 +436,7 @@ local deslasher = lpeg.replacer(S("\\/")^1,"/")
function file.join(one, two, three, ...)
if not two then
- return one == "" and one or lpegmatch(stripper,one)
+ return one == "" and one or lpegmatch(reslasher,one)
end
if one == "" then
return lpegmatch(stripper,three and concat({ two, three, ... },"/") or two)