Correct a typo: tables don't work like strings

This commit is contained in:
dmiller 2014-09-23 13:41:58 +00:00
parent e42409be93
commit 99cc5102c3

View file

@ -1893,7 +1893,7 @@ function tag_pattern(tag, endtag)
else
patt[#patt+1] = "%f[%s/>].->"
end
return patt:concat()
return table.concat(patt)
end
---