fixed buffer.lua, now actually works.

This commit is contained in:
Izaya 2017-07-31 09:40:02 +10:00
parent a95611806d
commit 611190b0bf

View File

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