From 08b0a9372ba32b7fa300ffd82a844983508af1c1 Mon Sep 17 00:00:00 2001 From: C3MA Date: Wed, 2 May 2018 21:13:44 +0200 Subject: [PATCH] Include current word into debug line --- displayword.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/displayword.lua b/displayword.lua index d69babb..f1ba630 100644 --- a/displayword.lua +++ b/displayword.lua @@ -215,7 +215,7 @@ if (words.fiveMin== 1) then bufColored = bufColored .. colorBg end end - print (x .. "x" .. y .. " : " .. start .. " color " .. tostring(item) .. " len " .. string.len(buf)) + print (x .. "x" .. y .. " : " .. start .. " color " .. tostring(item) .. " len " .. string.len(buf) .. " word " .. tostring(word)) end end collectgarbage()