From f5c690b684b8503dce9fe9f9e1a956cabd1c8699 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 1 Aug 2014 14:24:02 -0300 Subject: details in comments --- lobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index d079e937..e7ce0141 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 2.87 2014/06/30 19:48:08 roberto Exp roberto $ +** $Id: lobject.c,v 2.88 2014/07/30 14:00:14 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -359,7 +359,7 @@ static void pushstr (lua_State *L, const char *str, size_t l) { /* this function handles only '%d', '%c', '%f', '%p', and '%s' - conventional formats, plus Lua-specific '%L' and '%U' */ + conventional formats, plus Lua-specific '%I' and '%U' */ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { int n = 0; for (;;) { -- cgit v1.2.3-55-g6feb