summaryrefslogtreecommitdiff
path: root/tex/context/base/file-job.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/file-job.lua')
-rw-r--r--tex/context/base/file-job.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/tex/context/base/file-job.lua b/tex/context/base/file-job.lua
index 0d1986463..ff99aa651 100644
--- a/tex/context/base/file-job.lua
+++ b/tex/context/base/file-job.lua
@@ -88,10 +88,12 @@ function commands.locatefilepath(name)
end
function commands.usepath(paths)
+ report_jobfiles("using path: %s",paths)
registerextrapath(paths)
end
function commands.usesubpath(subpaths)
+ report_jobfiles("using subpath: %s",subpaths)
registerextrapath(nil,subpaths)
end
@@ -773,6 +775,10 @@ function document.getargument(key,default) -- commands
context(v or default or "")
end
+function document.setargument(key,value)
+ document.arguments[key] = value -- only strings
+end
+
function document.getfilename(i) -- commands
context(document.files[tonumber(i)] or "")
end