This commit is contained in:
Roberto Ierusalimschy
2014-10-28 16:23:31 -02:00
parent 9de384e27a
commit 61c3c80177

View File

@@ -1,5 +1,5 @@
/* /*
** $Id: lstrlib.c,v 1.207 2014/10/25 11:50:46 roberto Exp roberto $ ** $Id: lstrlib.c,v 1.208 2014/10/27 13:30:24 roberto Exp roberto $
** Standard library for string operations and pattern-matching ** Standard library for string operations and pattern-matching
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@@ -897,10 +897,10 @@ static int str_format (lua_State *L) {
nb = sprintf(buff, form, n); nb = sprintf(buff, form, n);
break; break;
} }
case 'e': case 'E': case 'f':
#if defined(LUA_USE_AFORMAT) #if defined(LUA_USE_AFORMAT)
case 'a': case 'A': case 'a': case 'A':
#endif #endif
case 'e': case 'E': case 'f':
case 'g': case 'G': { case 'g': case 'G': {
addlenmod(form, LUA_NUMBER_FRMLEN); addlenmod(form, LUA_NUMBER_FRMLEN);
nb = sprintf(buff, form, luaL_checknumber(L, arg)); nb = sprintf(buff, form, luaL_checknumber(L, arg));