aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-06-18 11:05:28 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-06-18 11:05:28 -0300
commitafbf5c5dab0b761f8f7344882dd7affd60dc7035 (patch)
tree149ef7df9177135a71bd878d05137a7bf219fe17
parenta1415c0d72053cf6f6f7e68033fa3b7f999ad960 (diff)
downloadlua-afbf5c5dab0b761f8f7344882dd7affd60dc7035.tar.gz
lua-afbf5c5dab0b761f8f7344882dd7affd60dc7035.tar.bz2
lua-afbf5c5dab0b761f8f7344882dd7affd60dc7035.zip
missing ']]' in long string
-rw-r--r--bugs2
1 files changed, 2 insertions, 0 deletions
diff --git a/bugs b/bugs
index a11a5550..81b9de95 100644
--- a/bugs
+++ b/bugs
@@ -2964,8 +2964,10 @@ patch = [[
2964+ return sizeof(lua_State) + sizeof(TValue) * th->stacksize + 2964+ return sizeof(lua_State) + sizeof(TValue) * th->stacksize +
2965+ sizeof(CallInfo) * n; 2965+ sizeof(CallInfo) * n;
2966 } 2966 }
2967]]
2967} 2968}
2968 2969
2970-- [[]]
2969Bug{ 2971Bug{
2970what = [[Wrong assert when reporting concatenation errors 2972what = [[Wrong assert when reporting concatenation errors
2971(manifests only when Lua is compiled in debug mode)]], 2973(manifests only when Lua is compiled in debug mode)]],