From 4fba1174335a3eb33f057ee23a36c795d37da567 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 20 Aug 2014 19:06:41 -0300 Subject: [PATCH] [un]'dumpint' -> [un]'dumpinteger' --- lstrlib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lstrlib.c b/lstrlib.c index daf86ffb..b73b306e 100644 --- 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} };