summaryrefslogtreecommitdiff
path: root/tex/context/base/luat-cnf.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2010-09-03 11:05:00 +0200
committerHans Hagen <pragma@wxs.nl>2010-09-03 11:05:00 +0200
commit0da1a7a94f55a5dc0d318f399eb843303d5b62f6 (patch)
treeb5493406b2f6d8954204b532df5549acbc4baee8 /tex/context/base/luat-cnf.lua
parentbbc8970958af29626335568414a4278d852e086f (diff)
downloadcontext-0da1a7a94f55a5dc0d318f399eb843303d5b62f6.tar.gz
beta 2010.09.03 11:05
Diffstat (limited to 'tex/context/base/luat-cnf.lua')
-rw-r--r--tex/context/base/luat-cnf.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/tex/context/base/luat-cnf.lua b/tex/context/base/luat-cnf.lua
index 4e723afee..8b52a269c 100644
--- a/tex/context/base/luat-cnf.lua
+++ b/tex/context/base/luat-cnf.lua
@@ -9,13 +9,15 @@ if not modules then modules = { } end modules ['luat-cnf'] = {
local type, next, tostring, tonumber = type, next, tostring, tonumber
local format, concat, find = string.format, table.concat, string.find
+local allocate = utilities.storage.allocate
+
texconfig.kpse_init = false
texconfig.shell_escape = 't'
luatex = luatex or { }
local luatex = luatex
-local variablenames = { -- most of this becomes obsolete
+local variablenames = allocate { -- most of this becomes obsolete
'buf_size', -- 3000
'dvi_buf_size', -- 16384
'error_line', -- 79
@@ -37,10 +39,10 @@ local variablenames = { -- most of this becomes obsolete
}
local function initialize()
- local t, var_value = { }, resolvers.var_value
+ local t, variable = allocate(), resolvers.variable
for i=1,#variablenames do
local name = variablenames[i]
- local value = var_value(name)
+ local value = variable(name)
value = tonumber(value) or value
texconfig[name], t[name] = value, value
end
@@ -89,6 +91,7 @@ function texconfig.init()
},
obsolete = {
"fontforge", -- can be filled by luat-log
+ "kpse",
},
builtin = builtin, -- to be filled
globals = globals, -- to be filled