tabulous: stop using otable

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-11 14:09:07 +02:00
parent 527bbfa0e0
commit c47b5daf75
1 changed files with 5 additions and 3 deletions

View File

@ -9,14 +9,16 @@
local capi = { client = client }
local table = table
local pairs = pairs
local setmetatable = setmetatable
local awful = require('awful')
local otable = require("otable")
--- Fabulous tabs
module("tabulous")
local tabbed_tags = otable() -- all tab tables, indexed by tab
local tabbed = {} -- the current tag tab table
-- all tab tables, indexed by tab
local tabbed_tags = setmetatable({}, { __mode = 'k' })
-- the current tag tab table
local tabbed = {}
local active_tag