From 03c4016d07477781aa3adcc9edf340c0bec9c6c8 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+orbitalquark@users.noreply.github.com> Date: Tue, 20 Oct 2020 15:29:03 -0400 Subject: Code cleanup. Of note: * io.save_all_files() does not visit each buffer to save anymore. An unintended side-effect was checking for outside modification (but only if the file itself was modified), so outside changes will always be saved over now. * The menu clicked handler uses assert_type(), so the 'Unknown command' localization is no longer needed. * When printing to a new buffer type would split the view, use an existing split view when possible. * Prefer 'goto continue' construct in loops over nested 'if's. * Fixed clearing of ui.find.replace_entry_text on reset in the GUI version. * Fixed lack of statusbar updating when setting options like buffer EOL mode, indentation, and encoding. * Renamed internal new_snippet() to new() and put it in the snippet metatable. --- core/locale.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'core/locale.lua') diff --git a/core/locale.lua b/core/locale.lua index 48701116..3a661fae 100644 --- a/core/locale.lua +++ b/core/locale.lua @@ -23,14 +23,14 @@ assert(f, '"core/locale.conf" not found') for line in f:lines() do -- Any line that starts with a non-word character except '[' is considered a -- comment. - if not line:find('^%s*[^%w_%[]') then - local id, str = line:match('^(.-)%s*=%s*(.-)\r?$') - if id and str and assert(not M[id], 'duplicate locale key "%s"', id) then - M[id] = not CURSES and str or str:gsub('_', '') - end + if not line:find('^%s*[%w_%[]') then goto continue end + local id, str = line:match('^(.-)%s*=%s*(.-)\r?$') + if id and str and assert(not M[id], 'duplicate locale key "%s"', id) then + M[id] = not CURSES and str or str:gsub('_', '') end + ::continue:: end f:close() -setmetatable(M, {__index = function(_, k) return 'No Localization:' .. k end}) -return M +return setmetatable( + M, {__index = function(_, k) return 'No Localization:' .. k end}) -- cgit v1.2.3