Fix regression in pulsebar.lua

Added gmatch back to aliased string library
This commit is contained in:
Alan D Moore 2017-01-23 23:05:36 -06:00 committed by GitHub
parent 272844030a
commit 17fa506422
1 changed files with 1 additions and 0 deletions

View File

@ -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