diff options
author | 2015-03-16 16:55:12 -0400 | |
---|---|---|
committer | 2015-03-16 16:55:12 -0400 | |
commit | 39b5f8728fdd215217d2749c20a2668ecbb5f080 (patch) | |
tree | 603e845b6683f6725593c8f12e69183156b6c5c2 /core/locale.lua | |
parent | cb3e886bba78a040d486af518d491cc191cebfd8 (diff) | |
download | textadept-39b5f8728fdd215217d2749c20a2668ecbb5f080.tar.gz textadept-39b5f8728fdd215217d2749c20a2668ecbb5f080.zip |
Code cleanup based on the output of luacheck, a Lua linter.
Diffstat (limited to 'core/locale.lua')
-rw-r--r-- | core/locale.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/locale.lua b/core/locale.lua index def44789..1dedd4a3 100644 --- a/core/locale.lua +++ b/core/locale.lua @@ -25,4 +25,4 @@ end f:close() return setmetatable(M, - {__index = function(t, k) return 'No Localization:'..k end}) + {__index = function(_, k) return 'No Localization:'..k end}) |