summaryrefslogtreecommitdiff
path: root/tex/context/base/core-env.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2014-02-07 02:00:28 +0200
committerMarius <mariausol@gmail.com>2014-02-07 02:00:28 +0200
commit8c7fab57c5fd2db6b9ade5f7608add9f650c8460 (patch)
tree5c9c76a9c7c0c09508b26b77d26721b030bfff84 /tex/context/base/core-env.lua
parent4d2068d1244e2b0949367d9cd18bfabe9d559de3 (diff)
downloadcontext-8c7fab57c5fd2db6b9ade5f7608add9f650c8460.tar.gz
beta 2014.02.07 00:57
Diffstat (limited to 'tex/context/base/core-env.lua')
-rw-r--r--tex/context/base/core-env.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/tex/context/base/core-env.lua b/tex/context/base/core-env.lua
index 8cbc93038..2cc84299b 100644
--- a/tex/context/base/core-env.lua
+++ b/tex/context/base/core-env.lua
@@ -31,6 +31,7 @@ tex.systemmodes = allocate { }
tex.constants = allocate { }
tex.conditionals = allocate { }
tex.ifs = allocate { }
+tex.isdefined = allocate { }
local modes = { }
local systemmodes = { }
@@ -78,6 +79,10 @@ setmetatableindex(tex.ifs, function(t,k)
return csname_id(k) ~= undefined and create(k)[2] == iftrue -- inefficient, this create, we need a helper
end)
+setmetatableindex(tex.isdefined, function(t,k)
+ return csname_id(k) ~= undefined
+end)
+
function context.setconditional(name,value)
if value then
context.settruevalue(name)