Cleaned up whitespace, now all indentation is done with 1 tab character

This commit is contained in:
Jakob Ovrum 2010-07-17 11:48:32 +09:00
parent 8f8feb00d7
commit 48ee749bb7
3 changed files with 300 additions and 300 deletions

View File

@ -83,6 +83,7 @@ function meta_preconnect:connect(server, port, timeout)
self.channels = {}
s:settimeout(0)
repeat
self:think()
until self.authed
@ -118,8 +119,7 @@ end
function meta:think()
while true do
local line = getline(self, 3)
if line then
self:handle(parse(line))
if line then self:handle(parse(line))
else
break
end