summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2006-04-02 16:32:10 +0000
committerDave Mitchell <davem@fdisolutions.com>2006-04-02 16:32:10 +0000
commit5d9a96ca2d500987d60740e4430baf1602f410c1 (patch)
treeb445051ed7a8129a0b2e3958c3cfce291fa7618a /regcomp.h
parent623e66097f3d3c76e4fbfed49657029a98953c17 (diff)
downloadperl-5d9a96ca2d500987d60740e4430baf1602f410c1.tar.gz
use slabs to allocate save state space in regmatch()
p4raw-id: //depot/perl@27679
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/regcomp.h b/regcomp.h
index 46a114d002..7554a02697 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -402,11 +402,7 @@ struct reg_substr_data {
/* trie related stuff */
-/* an accepting state/position*/
-struct _reg_trie_accepted {
- U8 *endpos;
- U16 wordnum;
-};
+
/* a transition record for the state machine. the
check field determines which state "owns" the
transition. the char the transition is for is
@@ -441,7 +437,6 @@ struct _reg_trie_state {
-typedef struct _reg_trie_accepted reg_trie_accepted;
typedef struct _reg_trie_state reg_trie_state;
typedef struct _reg_trie_trans reg_trie_trans;