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 /lobject.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 'lobject.c')
-rw-r--r-- | lobject.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.c,v 2.91 2014/10/04 22:57:10 roberto Exp roberto $ | 2 | ** $Id: lobject.c,v 2.92 2014/10/10 22:23:04 roberto Exp roberto $ |
3 | ** Some generic functions over Lua objects | 3 | ** Some generic functions over Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -415,9 +415,8 @@ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { | |||
415 | break; | 415 | break; |
416 | } | 416 | } |
417 | default: { | 417 | default: { |
418 | luaG_runerror(L, | 418 | luaG_runerror(L, "invalid option '%%%c' to 'lua_pushfstring'", |
419 | "invalid option " LUA_QL("%%%c") " to " LUA_QL("lua_pushfstring"), | 419 | *(e + 1)); |
420 | *(e + 1)); | ||
421 | } | 420 | } |
422 | } | 421 | } |
423 | n += 2; | 422 | n += 2; |