diff options
author | 2011-11-23 08:22:55 -0500 | |
---|---|---|
committer | 2011-11-23 08:22:55 -0500 | |
commit | 6d8d01a364ba9786b7f9698840ba60e769954808 (patch) | |
tree | 19afb5afac0889d6c1a92bb2c33ee551f902a134 /core/keys.lua | |
parent | f1db4cacfe3aa49ac03e50f05ea522e69b1a0b63 (diff) | |
download | textadept-6d8d01a364ba9786b7f9698840ba60e769954808.tar.gz textadept-6d8d01a364ba9786b7f9698840ba60e769954808.zip |
Code cleanup.
Diffstat (limited to 'core/keys.lua')
-rw-r--r-- | core/keys.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/keys.lua b/core/keys.lua index a00beb7d..4d1ccf48 100644 --- a/core/keys.lua +++ b/core/keys.lua @@ -107,10 +107,7 @@ LANGUAGE_MODULE_PREFIX = (not OSX and CTRL or META)..'l' local OSX = OSX local string = string local string_byte, string_char = string.byte, string.char -local xpcall = xpcall -local next = next -local type = type -local unpack = unpack +local xpcall, next, type, unpack = xpcall, next, type, unpack local no_args = {} local getmetatable = getmetatable local error = function(e) events.emit(events.ERROR, e) end |