diff options
Diffstat (limited to 'tex/context/base/core-ctx.lua')
-rw-r--r-- | tex/context/base/core-ctx.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/core-ctx.lua b/tex/context/base/core-ctx.lua index db85eaf7d..816c8ff57 100644 --- a/tex/context/base/core-ctx.lua +++ b/tex/context/base/core-ctx.lua @@ -72,12 +72,12 @@ end local processfile = commands.processfile local doifinputfileelse = commands.doifinputfileelse -function commands.processfile(name,depth) +function commands.processfile(name,maxreadlevel) -- overloaded local prepname = found and resolve(name) if prepname then return processfile(prepname,0) end - return processfile(name,depth) + return processfile(name,maxreadlevel) end function commands.doifinputfileelse(name,depth) |