]> git.lizzy.rs Git - metalua.git/blobdiff - src/compiler/gg.lua
fixes suggested by D. M.
[metalua.git] / src / compiler / gg.lua
index 0c0af636432d435bf52d6dae98c6911c5cb3a429..db0d91c16f9b982f1ccc33eaba41e7980acd40af 100644 (file)
@@ -210,7 +210,7 @@ function sequence (p)
    elseif type(p[1])=="string" then -- find name based on 1st keyword
       if #p==1 then p.name=p[1]
       elseif type(p[#p])=="string" then
-         p.name = p[1] .. " ... " . p[#p]
+         p.name = p[1] .. " ... " .. p[#p]
       else p.name = p[1] .. " ..." end
    else -- can't find a decent name
       p.name = "<anonymous>"