From: Alan D Moore Date: Tue, 24 Jan 2017 05:05:36 +0000 (-0600) Subject: Fix regression in pulsebar.lua X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/17fa506422e4eeee0de14a9989817af73bb0694f Fix regression in pulsebar.lua Added gmatch back to aliased string library --- diff --git a/widgets/pulsebar.lua b/widgets/pulsebar.lua index 9380a34..284b886 100644 --- a/widgets/pulsebar.lua +++ b/widgets/pulsebar.lua @@ -13,6 +13,7 @@ local naughty = require("naughty") local wibox = require("wibox") local math = { modf = math.modf } local string = { format = string.format, + gmatch = string.gmatch, match = string.match, rep = string.rep } local type = type