Use cs independent command tokens

This commit is contained in:
Marcel Krüger 2020-07-03 03:54:30 +02:00
parent f5b842c30e
commit 3d7380f76a
2 changed files with 15 additions and 4 deletions

View file

@ -12,8 +12,7 @@ lua.get_functions_table()[restore_func] = function()
end
end
end
local lua_call = token.command_id'lua_call'
local restore_toks = {token.create'atendofgroup', token.new(restore_func, lua_call)}
local restore_toks = {token.new(2, token.command_id'after_something') , token.new(restore_func, token.command_id'lua_call')} -- \atendofgroup FIXME: Detect mode automatically once token.primitive is fixed
local put_next = token.put_next
local runtoks = tex.runtoks
local function put_restore_toks()