From 80ac5e83fdc07d14c55056365aaf370436fbeb4e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 12 Jul 2005 11:32:08 -0300 Subject: details (alphabetical order for list of functions) --- lstrlib.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index 149db248..25aa7748 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.117 2005/05/31 14:25:18 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.118 2005/07/05 14:30:38 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ @@ -779,21 +779,21 @@ static int str_format (lua_State *L) { static const luaL_reg strlib[] = { - {"len", str_len}, - {"sub", str_sub}, - {"reverse", str_reverse}, - {"lower", str_lower}, - {"upper", str_upper}, - {"char", str_char}, - {"rep", str_rep}, {"byte", str_byte}, - {"format", str_format}, + {"char", str_char}, {"dump", str_dump}, {"find", str_find}, + {"format", str_format}, {"gfind", gfind_nodef}, {"gmatch", gmatch}, {"gsub", str_gsub}, + {"len", str_len}, + {"lower", str_lower}, {"match", str_match}, + {"rep", str_rep}, + {"reverse", str_reverse}, + {"sub", str_sub}, + {"upper", str_upper}, {NULL, NULL} }; -- cgit v1.2.3-55-g6feb