Fix problem pointed out by fnuecke

Changed 1 and 0 to true and false
This commit is contained in:
jamesb6626 2014-06-25 16:48:15 +01:00
parent 41579f85bc
commit 4c8b33e5d9

View File

@ -13,7 +13,7 @@ local function nextLine(file, line, num)
if not line then
line = file:read("*l")
if not line then -- eof
return 1
return true
end
end
local wrapped
@ -24,7 +24,7 @@ local function nextLine(file, line, num)
term.setCursor(1, h)
term.write(":")
term.setCursorBlink(true)
return 0
return false
end
local args = shell.parse(...)