made vt52 support actually setting the session ID

This commit is contained in:
Izaya 2017-09-26 13:56:15 +10:00 committed by Izaya
parent 76837876d6
commit 67363dcf92

View File

@ -65,16 +65,17 @@ function tty(gA,sA,sI,fg,bg)
end end
end end
spawn("tty["..tostring(sI).."]: "..gA:sub(1,8)..","..sA:sub(1,8),function() log(pcall(function() spawn("tty["..tostring(sI).."]: "..gA:sub(1,8)..","..sA:sub(1,8),function() log(pcall(function()
while true do os.setenv("sI",sI)
local csi = os.getenv("sI")
log(csi)
while true do while true do
_,si,str=event.pull("display") local csi = os.getenv("sI")
if si == csi then log(csi)
wl(str) while true do
ic() _,si,str=event.pull("display")
if si == csi then
wl(str)
ic()
end
end end
end end
end
end)) end) end)) end)
end end