# HG changeset patch # User Flick # Date 1289539868 28800 # Node ID d58055179c16fcd09b31f231c3ec0ceae04b0160 # Parent 6341ab2be68b27845a7fe30a46929a8cec04bbae Removed stray debugging prints diff -r 6341ab2be68b -r d58055179c16 Editor.lua --- a/Editor.lua Thu Nov 11 20:34:09 2010 -0800 +++ b/Editor.lua Thu Nov 11 21:31:08 2010 -0800 @@ -209,7 +209,6 @@ function Editor:Close() if self.gui then - print("closing...") self.gui:ReleaseChildren() self.gui:Hide() end diff -r 6341ab2be68b -r d58055179c16 modules/Action.lua --- a/modules/Action.lua Thu Nov 11 20:34:09 2010 -0800 +++ b/modules/Action.lua Thu Nov 11 21:31:08 2010 -0800 @@ -514,7 +514,6 @@ local function ParseMultiID(nBtns, nPages, s) if s:match("[^%d%s,;]") then - ReAction:Print("items other than digits, spaces, commas, and semicolons in string",s) return nil end local p = { } @@ -522,13 +521,11 @@ local pattern = ("^%s?$"):format(("%s*(%d+)%s*,"):rep(nBtns)) local ids = { list:match(pattern) } if #ids ~= nBtns then - ReAction:Print("found",#ids,"buttons instead of",nBtns) return nil end table.insert(p,ids) end if #p ~= nPages then - ReAction:Print("found",#p,"pages instead of",nPages) return nil end return p