From 438e969cc880f944ca0c737d1869d865910ca107 Mon Sep 17 00:00:00 2001 From: Shmuel Zeigerman Date: Sat, 21 Oct 2023 00:54:27 +0300 Subject: [PATCH] Fix lm:about --- luamacro/src/luamacro.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luamacro/src/luamacro.lua b/luamacro/src/luamacro.lua index 4231f5694..606d538ca 100644 --- a/luamacro/src/luamacro.lua +++ b/luamacro/src/luamacro.lua @@ -345,7 +345,7 @@ local function About() text = text.."\nMoonScript "..lib.version if lpeg then local v = lpeg.version - text = text.."\nLPeg "..(type(v)=="function" and v() or v) -- depends on LPeg version + text = text.."\n"..(type(v)=="function" and "LPeg "..v() or v) -- depends on LPeg version end end