summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-02-12 20:01:26 -0700
committerKarl Williamson <public@khwilliamson.com>2011-02-14 08:41:39 -0700
commit343b0ebab9576ba93e5a724f346fe7ef6c73409b (patch)
tree4cfb7369d7557a9e754265b7739a5afc66bc76b6 /regexec.c
parentaf944926e84e634b79cd80d8766d9204cf14cf75 (diff)
downloadperl-343b0ebab9576ba93e5a724f346fe7ef6c73409b.tar.gz
regexec.c: Rmv unused macro
A recent commit stopped calling this
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/regexec.c b/regexec.c
index 1fe4f2f64d..1cccddf8d4 100644
--- a/regexec.c
+++ b/regexec.c
@@ -1240,30 +1240,6 @@ uvc, charid, foldlen, foldbuf, uniflags) STMT_START { \
} \
} STMT_END
-#define REXEC_FBC_EXACTISH_CHECK(CoNd) \
-{ \
- char *my_strend= (char *)strend; \
- if ( (CoNd) \
- && (ln == len || \
- foldEQ_utf8(s, &my_strend, 0, utf8_target, \
- m, NULL, ln, cBOOL(UTF_PATTERN))) \
- && (!reginfo || regtry(reginfo, &s)) ) \
- goto got_it; \
- else { \
- U8 foldbuf[UTF8_MAXBYTES_CASE+1]; \
- uvchr_to_utf8(tmpbuf, c); \
- f = to_utf8_fold(tmpbuf, foldbuf, &foldlen); \
- if ( f != c \
- && (f == c1 || f == c2) \
- && (ln == len || \
- foldEQ_utf8_flags(s, &my_strend, 0, utf8_target,\
- m, NULL, ln, cBOOL(UTF_PATTERN), utf8_fold_flags))\
- && (!reginfo || regtry(reginfo, &s)) ) \
- goto got_it; \
- } \
-} \
-s += len
-
#define REXEC_FBC_EXACTISH_SCAN(CoNd) \
STMT_START { \
while (s <= e) { \