lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 4fba1174335a3eb33f057ee23a36c795d37da567
parent 2be88d50843eafae123c28dfc9750fcf473f28e4
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 20 Aug 2014 19:06:16 -0300

[un]'dumpint' -> [un]'dumpinteger'

Diffstat:
Mlstrlib.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lstrlib.c b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.199 2014/07/29 16:01:00 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.200 2014/07/30 13:59:24 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ @@ -1177,9 +1177,9 @@ static const luaL_Reg strlib[] = { {"sub", str_sub}, {"upper", str_upper}, {"dumpfloat", dumpfloat_l}, - {"dumpint", dumpint_l}, + {"dumpinteger", dumpint_l}, {"undumpfloat", undumpfloat_l}, - {"undumpint", undumpint_l}, + {"undumpinteger", undumpint_l}, {NULL, NULL} };