diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-06-18 11:05:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-06-18 11:05:28 -0300 |
commit | afbf5c5dab0b761f8f7344882dd7affd60dc7035 (patch) | |
tree | 149ef7df9177135a71bd878d05137a7bf219fe17 | |
parent | a1415c0d72053cf6f6f7e68033fa3b7f999ad960 (diff) | |
download | lua-afbf5c5dab0b761f8f7344882dd7affd60dc7035.tar.gz lua-afbf5c5dab0b761f8f7344882dd7affd60dc7035.tar.bz2 lua-afbf5c5dab0b761f8f7344882dd7affd60dc7035.zip |
missing ']]' in long string
-rw-r--r-- | bugs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 | -- [[]] | ||
2969 | Bug{ | 2971 | Bug{ |
2970 | what = [[Wrong assert when reporting concatenation errors | 2972 | what = [[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)]], |