aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-08-01 14:24:02 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-08-01 14:24:02 -0300
commitf5c690b684b8503dce9fe9f9e1a956cabd1c8699 (patch)
treed62e88764baf72f53864d933b657ee9f79d404a6 /lobject.c
parent61fa462535a5c16b46e5b19ee28c0d998ab6c39e (diff)
downloadlua-f5c690b684b8503dce9fe9f9e1a956cabd1c8699.tar.gz
lua-f5c690b684b8503dce9fe9f9e1a956cabd1c8699.tar.bz2
lua-f5c690b684b8503dce9fe9f9e1a956cabd1c8699.zip
details in comments
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 (;;) {