aboutsummaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-05 09:14:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-05 09:14:08 -0300
commit001f2bdd0e2f8803889c1b5164b57a51e44aef5b (patch)
treed200cf4d708be3c61e64640c45b47050c9c6a375 /lstrlib.c
parentcd2ddaded97f7f2b2af02cecfd165cf70e6f83f4 (diff)
downloadlua-001f2bdd0e2f8803889c1b5164b57a51e44aef5b.tar.gz
lua-001f2bdd0e2f8803889c1b5164b57a51e44aef5b.tar.bz2
lua-001f2bdd0e2f8803889c1b5164b57a51e44aef5b.zip
new definition for types-tags
Diffstat (limited to 'lstrlib.c')
-rw-r--r--lstrlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstrlib.c b/lstrlib.c
index 52caae20..c79a4011 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.52 2000/09/11 17:38:42 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.53 2000/09/14 14:09:31 roberto Exp roberto $
3** Standard library for string operations and pattern-matching 3** Standard library for string operations and pattern-matching
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -525,7 +525,7 @@ static void luaI_addquoted (lua_State *L, luaL_Buffer *b, int arg) {
525 luaL_putchar(b, '"'); 525 luaL_putchar(b, '"');
526} 526}
527 527
528/* maximum size of each formated item (> len(format('%99.99f', -1e308))) */ 528/* maximum size of each formatted item (> len(format('%99.99f', -1e308))) */
529#define MAX_ITEM 512 529#define MAX_ITEM 512
530/* maximum size of each format specification (such as '%-099.99d') */ 530/* maximum size of each format specification (such as '%-099.99d') */
531#define MAX_FORMAT 20 531#define MAX_FORMAT 20