Don't try to be smart with new, undocumented stuff

This commit is contained in:
Marcel Krüger 2020-06-13 03:31:43 +02:00
parent 0d4199ab4a
commit a0fb4684b3
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@
do
local function frozen(s)
local t = token.create(s)
return token.new(t.mode, t.command)
return t
% print(t, token.new(t.mode, t.command), t.mode, t.command, t.data, t.cmdchrcs)
% return token.new(t.mode, t.command)
end
local dimen_cmd = token.command_id'register_dimen'
local count_cmd = token.command_id'register_int'