made vt52 support actually setting the session ID

This commit is contained in:
Izaya 2017-09-26 13:56:15 +10:00
parent 337e9d7c9f
commit 92eaeb4c46
1 changed files with 9 additions and 8 deletions

View File

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