summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/luat-cod.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/luat-cod.lua')
-rw-r--r--tex/context/base/mkiv/luat-cod.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/mkiv/luat-cod.lua b/tex/context/base/mkiv/luat-cod.lua
index 445e365ff..ad7f34270 100644
--- a/tex/context/base/mkiv/luat-cod.lua
+++ b/tex/context/base/mkiv/luat-cod.lua
@@ -38,7 +38,7 @@ function lua.registeredcodes()
return lua.lastbytecode - lua.firstbytecode + 1
end
--- no file.* functions yet
+-- no file.* and utilities.parsers.* functions yet
function lua.registercode(filename,options)
local barename = gsub(filename,"%.[%a%d]+$","")
@@ -46,7 +46,7 @@ function lua.registercode(filename,options)
local basename = match(barename,"^.+[/\\](.-)$") or barename
if not bytedone[basename] then
local opts = { }
- if options ~= "" then
+ if type(options) == "string" and options ~= "" then
for s in gmatch(options,"([a-z]+)") do
opts[s] = true
end