diff options
Diffstat (limited to 'Master/texmf-dist/tex/context/base/scrn-hlp.lua')
-rw-r--r-- | Master/texmf-dist/tex/context/base/scrn-hlp.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/context/base/scrn-hlp.lua b/Master/texmf-dist/tex/context/base/scrn-hlp.lua index 81d68840b15..5f8368c6dc3 100644 --- a/Master/texmf-dist/tex/context/base/scrn-hlp.lua +++ b/Master/texmf-dist/tex/context/base/scrn-hlp.lua @@ -13,7 +13,6 @@ interactions.help = help local a_help = attributes.private("help") -local has_attribute = node.has_attribute local copy_nodelist = node.copy_list local hpack_nodelist = node.hpack @@ -62,7 +61,7 @@ local function collect(head,used) while head do local id = head.id if id == hlist_code then - local a = has_attribute(head,a_help) + local a = head[a_help] if a then if not used then used = { a } |