diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-05-14 09:24:04 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-05-14 09:24:04 -0300 |
commit | 924bbe020bfb79a42a4756e36847dab7880d36b4 (patch) | |
tree | cccdb6837c1299683bfdcecd49bce1969a8568bd /lstrlib.c | |
parent | 3aa500b524793cf79de78c373a618d708bf22004 (diff) | |
download | lua-924bbe020bfb79a42a4756e36847dab7880d36b4.tar.gz lua-924bbe020bfb79a42a4756e36847dab7880d36b4.tar.bz2 lua-924bbe020bfb79a42a4756e36847dab7880d36b4.zip |
bigger limits
Diffstat (limited to 'lstrlib.c')
-rw-r--r-- | lstrlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
122 | struct Capture { | 122 | struct Capture { |
123 | char *src_end; /* end ('\0') of source string */ | 123 | char *src_end; /* end ('\0') of source string */ |