summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-02-14 00:14:04 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-02-14 00:14:04 +0000
commit7fae4e64c5e2903183a8656ece6686238ddef215 (patch)
treefcfe3d9ba5c065b79e40d57f28c003565b6bedac /regcomp.c
parent837485b6cd4b757519a4ac6f03f3857c2fcf4844 (diff)
downloadperl-7fae4e64c5e2903183a8656ece6686238ddef215.tar.gz
[asperl] added AS patch#5 (patch #4 was intentionally skipped after
discussion) p4raw-id: //depot/asperl@521
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/regcomp.c b/regcomp.c
index 9d9fa89a32..b457cfb2f2 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -64,20 +64,6 @@
#undef op
#endif /* op */
-static regnode regdummy;
-static char * regparse; /* Input-scan pointer. */
-static char * regxend; /* End of input for compile */
-static regnode * regcode; /* Code-emit pointer; &regdummy = don't. */
-static I32 regnaughty; /* How bad is this pattern? */
-static I32 regsawback; /* Did we see \1, ...? */
-
-/* This guys appear both in regcomp.c and regexec.c, but there is no
- other reason to have them global. */
-static char * regprecomp; /* uncompiled string. */
-static I32 regnpar; /* () count. */
-static I32 regsize; /* Code size. */
-static U16 regflags; /* are we folding, multilining? */
-
#ifdef MSDOS
# if defined(BUGGY_MSC6)
/* MSC 6.00A breaks on op/regexp.t test 85 unless we turn this off */
@@ -134,16 +120,6 @@ static void regtail _((regnode *, regnode *));
static char* nextchar _((void));
#endif
-static U32 regseen;
-static I32 seen_zerolen;
-static regexp *rx;
-static I32 extralen;
-
-#ifdef DEBUGGING
-static int colorset;
-char *colors[4];
-#endif
-
/* Length of a variant. */
#ifndef PERL_OBJECT