rename debug() to Debug() to stop clashing with the debug submodule from Lua

This commit is contained in:
HW
2012-06-04 00:49:23 +02:00
parent ccd91b58e3
commit 0d12ff70cd
19 changed files with 134 additions and 115 deletions

View File

@@ -41,7 +41,7 @@ function PDFReader:getText(pageno)
return nil
end
local text = page:getPageText()
--debug("## page:getPageText "..dump(text)) -- performance impact on device
--Debug("## page:getPageText "..dump(text)) -- performance impact on device
page:close()
return text
end