diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-05-06 14:21:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-05-06 14:21:59 -0300 |
commit | f2043b7a589448990199f246a362c3df648157c7 (patch) | |
tree | f5e27b9ea2dfbf8791c5cef072f2643daed5a706 /ldebug.h | |
parent | 2b1c2c61b025aa06446367965316b3878578a768 (diff) | |
download | lua-f2043b7a589448990199f246a362c3df648157c7.tar.gz lua-f2043b7a589448990199f246a362c3df648157c7.tar.bz2 lua-f2043b7a589448990199f246a362c3df648157c7.zip |
correct error message for conversion errors from float to int
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 2.8 2013/04/25 15:59:42 roberto Exp roberto $ | 2 | ** $Id: ldebug.h,v 2.9 2013/04/29 16:58:10 roberto Exp roberto $ |
3 | ** Auxiliary functions from Debug Interface module | 3 | ** Auxiliary functions from Debug Interface module |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -27,6 +27,8 @@ LUAI_FUNC l_noret luaG_concaterror (lua_State *L, const TValue *p1, | |||
27 | const TValue *p2); | 27 | const TValue *p2); |
28 | LUAI_FUNC l_noret luaG_aritherror (lua_State *L, const TValue *p1, | 28 | LUAI_FUNC l_noret luaG_aritherror (lua_State *L, const TValue *p1, |
29 | const TValue *p2); | 29 | const TValue *p2); |
30 | LUAI_FUNC l_noret luaG_tointerror (lua_State *L, const TValue *p1, | ||
31 | const TValue *p2); | ||
30 | LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1, | 32 | LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1, |
31 | const TValue *p2); | 33 | const TValue *p2); |
32 | LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); | 34 | LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); |