summaryrefslogtreecommitdiff
path: root/tex/context/base/core-dat.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/core-dat.lua')
-rw-r--r--tex/context/base/core-dat.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/core-dat.lua b/tex/context/base/core-dat.lua
index 879ff6130..d81f11a28 100644
--- a/tex/context/base/core-dat.lua
+++ b/tex/context/base/core-dat.lua
@@ -11,7 +11,7 @@ if not modules then modules = { } end modules ['core-dat'] = {
replaces the twopass data mechanism.</p>
--ldx]]--
-local tonumber, type = tonumber, type
+local tonumber, tostring, type = tonumber, tostring, type
local context, commands = context, commands
@@ -161,7 +161,7 @@ function commands.datasetvariable(name,tag,key)
if trace_datasets then
report_dataset("unknown: name %s with tag %s (not passed to tex)",name,tag)
end
- elseif type(t) ~= "table" then
+ elseif type(t) == "table" then
local s = t[key]
if type(s) ~= "table" then
context(tostring(s))