diff modules/Action.lua @ 188:d58055179c16

Removed stray debugging prints
author Flick <flickerstreak@gmail.com>
date Thu, 11 Nov 2010 21:31:08 -0800
parents df68b5a40490
children e63aefb8a555
line wrap: on
line diff
--- 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