aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-17 13:28:21 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-17 13:28:21 -0300
commitf97c64d7bf4c0f373711795d8faba0e8cd206761 (patch)
tree99c9e25132b2ef193dc417873e8f44e5c0ea8738 /lobject.c
parentea3155e380080095a6f8c63297f0505789cf08b7 (diff)
downloadlua-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.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lobject.c b/lobject.c
index ebf3cf05..8e29b383 100644
--- a/lobject.c
+++ b/lobject.c
@@ -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;