aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.c b/lobject.c
index d079e937..e7ce0141 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 2.87 2014/06/30 19:48:08 roberto Exp roberto $ 2** $Id: lobject.c,v 2.88 2014/07/30 14:00:14 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*/
@@ -359,7 +359,7 @@ static void pushstr (lua_State *L, const char *str, size_t l) {
359 359
360 360
361/* this function handles only '%d', '%c', '%f', '%p', and '%s' 361/* this function handles only '%d', '%c', '%f', '%p', and '%s'
362 conventional formats, plus Lua-specific '%L' and '%U' */ 362 conventional formats, plus Lua-specific '%I' and '%U' */
363const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { 363const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
364 int n = 0; 364 int n = 0;
365 for (;;) { 365 for (;;) {