diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-17 13:28:21 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-17 13:28:21 -0300 |
commit | f97c64d7bf4c0f373711795d8faba0e8cd206761 (patch) | |
tree | 99c9e25132b2ef193dc417873e8f44e5c0ea8738 /ltable.c | |
parent | ea3155e380080095a6f8c63297f0505789cf08b7 (diff) | |
download | lua-f97c64d7bf4c0f373711795d8faba0e8cd206761.tar.gz lua-f97c64d7bf4c0f373711795d8faba0e8cd206761.tar.bz2 lua-f97c64d7bf4c0f373711795d8faba0e8cd206761.zip |
macros 'LUA_QL'/'LUA_QL' deprecated
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.c,v 2.94 2014/08/01 17:24:02 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 2.95 2014/09/04 18:15:29 roberto Exp roberto $ |
3 | ** Lua tables (hash) | 3 | ** Lua tables (hash) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -181,7 +181,7 @@ static unsigned int findindex (lua_State *L, Table *t, StkId key) { | |||
181 | } | 181 | } |
182 | nx = gnext(n); | 182 | nx = gnext(n); |
183 | if (nx == 0) | 183 | if (nx == 0) |
184 | luaG_runerror(L, "invalid key to " LUA_QL("next")); /* key not found */ | 184 | luaG_runerror(L, "invalid key to 'next'"); /* key not found */ |
185 | else n += nx; | 185 | else n += nx; |
186 | } | 186 | } |
187 | } | 187 | } |