From 753b949ae0ff0f574a7a8247ff936be623d815c3 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Fri, 13 Mar 2020 17:33:34 -0400 Subject: More code cleanup, refactoring, and reformatting. --- modules/textadept/command_entry.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/textadept/command_entry.lua') diff --git a/modules/textadept/command_entry.lua b/modules/textadept/command_entry.lua index 87f1465a..5df63a25 100644 --- a/modules/textadept/command_entry.lua +++ b/modules/textadept/command_entry.lua @@ -78,7 +78,7 @@ local function run_lua(code) if type(result) == 'table' then local items = {} for k, v in pairs(result) do - items[#items + 1] = string.format('%s = %s', tostring(k), tostring(v)) + items[#items + 1] = string.format('%s = %s', k, v) end table.sort(items) result = string.format('{%s}', table.concat(items, ', ')) -- cgit v1.2.3