aboutsummaryrefslogtreecommitdiff
path: root/src/libregexp/regcomp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libregexp/regcomp.h')
-rw-r--r--src/libregexp/regcomp.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/libregexp/regcomp.h b/src/libregexp/regcomp.h
index 6c88cd09..4b9a483b 100644
--- a/src/libregexp/regcomp.h
+++ b/src/libregexp/regcomp.h
@@ -12,13 +12,6 @@ struct Resublist
Resub m[NSUBEXP];
};
-/* max character classes per program */
-extern Reprog RePrOg;
-#define NCLASS (sizeof(RePrOg.class)/sizeof(Reclass))
-
-/* max rune ranges per character class */
-#define NCCRUNE (sizeof(Reclass)/sizeof(Rune))
-
/*
* Actions and Tokens (Reinst types)
*
@@ -48,7 +41,7 @@ extern Reprog RePrOg;
* regexec execution lists
*/
#define LISTSIZE 10
-#define BIGLISTSIZE (10*LISTSIZE)
+#define BIGLISTSIZE (25*LISTSIZE)
typedef struct Relist Relist;
struct Relist
{