fixed buffer.lua, now actually works.

This commit is contained in:
Izaya 2017-07-31 09:40:02 +10:00
parent a95611806d
commit 611190b0bf
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ function buffer.create(w,c) -- worker, close
local t={}
t.b=""
function t.w(s,d)
s.b=s.b..TS(d)
s.b=s.b..tostring(d)
end
t.write = t.w
function t.r(s,l)