# HG changeset patch # User Matthew Wild # Date 1245718081 -3600 # Node ID 846df07536eb3363edac01024a4c56c2c51a9ae5 # Parent 546caa44620c1fc63304176b57b243b13b2472d1 modulemanager: Expose api table to allow others to extend the module API diff -r 546caa44620c -r 846df07536eb core/modulemanager.lua --- a/core/modulemanager.lua Mon Jun 22 22:02:04 2009 +0100 +++ b/core/modulemanager.lua Tue Jun 23 01:48:01 2009 +0100 @@ -38,7 +38,8 @@ module "modulemanager" -local api = {}; -- Module API container +api = {}; +local api = api; -- Module API container local modulemap = { ["*"] = {} };