1
0
mirror of https://github.com/minetest-mods/intllib.git synced 2025-07-02 08:00:24 +02:00

Fix warnings issued by luacheck.

This commit is contained in:
Diego Martínez
2017-02-11 01:56:54 -03:00
parent c667cd0de6
commit 122d1a83cc
5 changed files with 17 additions and 30 deletions

View File

@ -123,7 +123,7 @@ table.sort(messages)
local last_msg
for i, msg in ipairs(messages) do
for _, msg in ipairs(messages) do
if msg ~= last_msg then
printf("%s =\n", escape(msg))
end