diff options
author | 2011-06-24 17:41:51 -0400 | |
---|---|---|
committer | 2011-06-24 17:41:51 -0400 | |
commit | e192e73a92eb896f9c8623d11a8c49ebbcb4c291 (patch) | |
tree | 7c09774b3fa143126e8373c2a0c3d901f3e7273c /modules/textadept/run.lua | |
parent | 282c7dd9fe5c903a4620d41c9498153e83867119 (diff) | |
download | textadept-e192e73a92eb896f9c8623d11a8c49ebbcb4c291.tar.gz textadept-e192e73a92eb896f9c8623d11a8c49ebbcb4c291.zip |
Removed '_G' prefix from globals where necessary.
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index f95b56f7..34171ce2 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -1,7 +1,7 @@ -- Copyright 2007-2011 Mitchell mitchell<att>caladbolg.net. See LICENSE. -local L = _G.locale.localize -local events = _G.events +local L = locale.localize +local events = events --- -- Module for running/executing source files. |