# HG changeset patch # User Waqas Hussain # Date 1244995603 -18000 # Node ID 4e56889c33e12d07d91c275f65b948219146ec5d # Parent 857034905016fa65a7f83f40824d6b5431ecb9ca modulemanager: Removed unused function get_module_filename(name) diff -r 857034905016 -r 4e56889c33e1 core/modulemanager.lua --- a/core/modulemanager.lua Sun Jun 14 21:03:59 2009 +0500 +++ b/core/modulemanager.lua Sun Jun 14 21:06:43 2009 +0500 @@ -268,12 +268,6 @@ end end -local _modulepath = { plugin_dir, "mod_", nil, ".lua"}; -function get_module_filename(name) - _modulepath[3] = name; - return t_concat(_modulepath); -end - ----- API functions exposed to modules ----------- -- Must all be in api.*