summaryrefslogtreecommitdiff
path: root/tex/context/base/luat-dum.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2010-08-20 00:00:00 +0200
committerHans Hagen <pragma@wxs.nl>2010-08-20 00:00:00 +0200
commitbbc8970958af29626335568414a4278d852e086f (patch)
treecc349c9c7902716090f1e587be04e8cc4546c67b /tex/context/base/luat-dum.lua
parent174663b0081dd76f91c45fd705262a262a7b1f49 (diff)
downloadcontext-bbc8970958af29626335568414a4278d852e086f.tar.gz
beta 2010.08.20 00:00
Diffstat (limited to 'tex/context/base/luat-dum.lua')
-rw-r--r--tex/context/base/luat-dum.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/tex/context/base/luat-dum.lua b/tex/context/base/luat-dum.lua
index 614c7d8f8..a8eed5d88 100644
--- a/tex/context/base/luat-dum.lua
+++ b/tex/context/base/luat-dum.lua
@@ -104,7 +104,7 @@ do
cachepaths = string.split(cachepaths,os.type == "windows" and ";" or ":")
for i=1,#cachepaths do
- if file.iswritable(cachepaths[i]) then
+ if file.is_writable(cachepaths[i]) then
writable = file.join(cachepaths[i],"luatex-cache")
lfs.mkdir(writable)
writable = file.join(writable,caches.namespace)
@@ -114,7 +114,7 @@ do
end
for i=1,#cachepaths do
- if file.isreadable(cachepaths[i]) then
+ if file.is_readable(cachepaths[i]) then
readables[#readables+1] = file.join(cachepaths[i],"luatex-cache",caches.namespace)
end
end
@@ -157,9 +157,9 @@ local function makefullname(path,name)
end
end
-function caches.iswritable(path,name)
+function caches.is_writable(path,name)
local fullname = makefullname(path,name)
- return fullname and file.iswritable(fullname)
+ return fullname and file.is_writable(fullname)
end
function caches.loaddata(paths,name)