X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/2697333bdcc6d1ec84e28e76892a007e62ecad2c..7e6f1336f26e8c36a1768ae1f7f076a30030a8a8:/helpers.lua diff --git a/helpers.lua b/helpers.lua index 309162e..b681cb0 100644 --- a/helpers.lua +++ b/helpers.lua @@ -8,6 +8,7 @@ local debug = require("debug") +local assert = assert local capi = { timer = (type(timer) == 'table' and timer or require ("gears.timer")) } local io = { open = io.open, lines = io.lines, @@ -61,9 +62,9 @@ end function helpers.lines_match(regexp, file) local lines = {} for index,line in pairs(helpers.lines_from(file)) do - if string.match(line, regexp) then + if string.match(line, regexp) then lines[index] = line - end + end end return lines end