summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/scrp-ini.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2021-05-20 17:05:45 +0200
committerContext Git Mirror Bot <phg@phi-gamma.net>2021-05-20 17:05:45 +0200
commit4e863080ff7d71e04f861ab33046e7e799a8a8c6 (patch)
tree2e7b188c7873549d00c1ed5c8f3de006f4cf99e7 /tex/context/base/mkiv/scrp-ini.lua
parentf0a7f858266c83825b2c8f6e9731d3c21abd3f9f (diff)
downloadcontext-4e863080ff7d71e04f861ab33046e7e799a8a8c6.tar.gz
2021-05-20 15:59:00
Diffstat (limited to 'tex/context/base/mkiv/scrp-ini.lua')
-rw-r--r--tex/context/base/mkiv/scrp-ini.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/mkiv/scrp-ini.lua b/tex/context/base/mkiv/scrp-ini.lua
index e19ca5b40..1ae1e6cbd 100644
--- a/tex/context/base/mkiv/scrp-ini.lua
+++ b/tex/context/base/mkiv/scrp-ini.lua
@@ -122,13 +122,13 @@ local insertnodebefore, insertnodeafter do
local insertbefore = nuts.insertbefore
local setattributelist = nuts.setattributelist
- local function insertnodebefore(head,current,what) -- todo : lmtx
+ insertnodebefore = function (head,current,what)
head, current = insertbefore(head,current,what)
setattributelist(what,current)
return head, current
end
- local function insertnodeafter(head,current,what) -- todo : lmtx
+ insertnodeafter = function(head,current,what)
head, current = insertafter(head,current,what)
setattributelist(what,current)
return head, current