aboutsummaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-05-14 09:24:04 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-05-14 09:24:04 -0300
commit924bbe020bfb79a42a4756e36847dab7880d36b4 (patch)
treecccdb6837c1299683bfdcecd49bce1969a8568bd /lstrlib.c
parent3aa500b524793cf79de78c373a618d708bf22004 (diff)
downloadlua-924bbe020bfb79a42a4756e36847dab7880d36b4.tar.gz
lua-924bbe020bfb79a42a4756e36847dab7880d36b4.tar.bz2
lua-924bbe020bfb79a42a4756e36847dab7880d36b4.zip
bigger limits
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 bcfa457e..d03612af 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.29 1999/04/30 14:12:05 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.30 1999/05/05 19:22:26 roberto Exp roberto $
3** Standard library for strings and pattern-matching 3** Standard library for strings and pattern-matching
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -117,7 +117,7 @@ static void str_char (void) {
117** ======================================================= 117** =======================================================
118*/ 118*/
119 119
120#define MAX_CAPT 9 120#define MAX_CAPT 32
121 121
122struct Capture { 122struct Capture {
123 char *src_end; /* end ('\0') of source string */ 123 char *src_end; /* end ('\0') of source string */