made :read()ing from a terminal not leave the trailing \n

This commit is contained in:
Izaya 2019-11-09 13:16:51 +11:00
parent 6b5677b870
commit 150541d91b
1 changed files with 1 additions and 2 deletions

View File

@ -31,8 +31,7 @@ function vtemu(gpua,scra) -- creates a process to handle the GPU and screen addr
coroutine.yield()
end
local n = buf:find("\n")
r, buf = buf:sub(1,n), buf:sub(n+1)
dprint("bread",r)
r, buf = buf:sub(1,n-1), buf:sub(n+1)
return r
end
return bread, write, function() io.write("\27[2J\27[H") end