lib: use Lua implementation of otable

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-03-14 17:19:58 +01:00
parent 58679a328b
commit eac5936393
8 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,7 @@ local pairs = pairs
local ipairs = ipairs
local table = table
local math = math
local otable = otable
local otable = require("otable")
local setmetatable = setmetatable
local capi =
{

View File

@ -8,7 +8,7 @@
local util = require("awful.util")
local pairs = pairs
local ipairs = ipairs
local otable = otable
local otable = require("otable")
local capi =
{
hooks = hooks,

View File

@ -8,7 +8,7 @@
local math = math
local image = image
local pairs = pairs
local otable = otable
local otable = require("otable")
local capi =
{
wibox = wibox,

View File

@ -7,7 +7,7 @@
-- Grab environment we need
local math = math
local type = type
local otable = otable
local otable = require("otable")
local ipairs = ipairs
local capi = { widget = widget,
button = button }

View File

@ -9,7 +9,7 @@ local capi = { widget = widget,
screen = screen,
image = image,
client = client }
local otable = otable
local otable = require("otable")
local type = type
local pairs = pairs
local ipairs = ipairs

View File

@ -8,7 +8,7 @@
local capi = { screen = screen,
image = image,
client = client }
local otable = otable
local otable = require("otable")
local ipairs = ipairs
local table = table
local hooks = require("awful.hooks")

View File

@ -10,7 +10,7 @@ local capi = { client = client }
local table = table
local pairs = pairs
local awful = require('awful')
local otable = otable
local otable = require("otable")
--- Fabulous tabs
module("tabulous")

View File

@ -9,7 +9,7 @@ local os = os
local io = io
local http = require("socket.http")
local ltn12 = require("ltn12")
local otable = otable
local otable = require("otable")
local setmetatable = setmetatable
local util = require("awful.util")
local hooks = require("awful.hooks")