From 6ac047afc46cbee935587b5734ec37d2e667a598 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 9 Jan 1998 12:57:43 -0200 Subject: details --- lstrlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index 34b9da42..8c963b11 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.5 1997/12/17 20:48:58 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.6 1998/01/09 14:44:55 roberto Exp $ ** Standard library for strings and pattern-matching ** See Copyright Notice in lua.h */ @@ -109,11 +109,11 @@ static void str_ascii (void) #define MAX_CAPT 9 struct Capture { + int level; /* total number of captures (finished or unfinished) */ struct { char *init; int len; /* -1 signals unfinished capture */ } capture[MAX_CAPT]; - int level; /* total number of captures (finished or unfinished) */ }; -- cgit v1.2.3-55-g6feb