Merge pull request #420 from sim590/unpack-lua51-compat

util/menu_iterator: retro compatibility with lua 5.1
This commit is contained in:
Luca CPZ 2019-02-14 15:26:41 +00:00 committed by GitHub
commit 013654cd1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,8 @@ local io = { lines = io.lines,
open = io.open }
local pairs = pairs
local rawget = rawget
local table = { sort = table.sort }
local table = { sort = table.sort, unpack = table.unpack }
local unpack = unpack or table.unpack -- lua 5.1 retro-compatibility
-- Lain helper functions for internal use
-- lain.helpers

View File

@ -11,12 +11,13 @@
-- lain.util.menu_iterator
local naughty = require("naughty")
local helpers = require("lain.helpers")
local util = require("lain.util")
local atable = require("awful.util").table
local assert = assert
local pairs = pairs
local tconcat = table.concat
local unpack = unpack
local unpack = unpack or table.unpack -- lua 5.1 retro-compatibility
local state = { cid = nil }