diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-08-01 14:24:02 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-08-01 14:24:02 -0300 |
commit | f5c690b684b8503dce9fe9f9e1a956cabd1c8699 (patch) | |
tree | d62e88764baf72f53864d933b657ee9f79d404a6 /lobject.c | |
parent | 61fa462535a5c16b46e5b19ee28c0d998ab6c39e (diff) | |
download | lua-f5c690b684b8503dce9fe9f9e1a956cabd1c8699.tar.gz lua-f5c690b684b8503dce9fe9f9e1a956cabd1c8699.tar.bz2 lua-f5c690b684b8503dce9fe9f9e1a956cabd1c8699.zip |
details in comments
Diffstat (limited to 'lobject.c')
-rw-r--r-- | lobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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' */ |
363 | const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { | 363 | const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { |
364 | int n = 0; | 364 | int n = 0; |
365 | for (;;) { | 365 | for (;;) { |