summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-05-31 21:07:44 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-05-31 21:07:44 +0000
commit77d41b28951bb615b428bd41b5c8f7ecea87fa50 (patch)
treeeb2a7cd26ad94da27980e2fc5199ebf4c8d631a2 /intrpvar.h
parentaf883608f6139035400fd724f833e61e4ed8c1b6 (diff)
downloadperl-77d41b28951bb615b428bd41b5c8f7ecea87fa50.tar.gz
[win32] minimal fix to enable compiling with -DMULTIPLICITY
(non-threadsafe regcomp.c globals need revisiting) p4raw-id: //depot/win32/perl@1067
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/intrpvar.h b/intrpvar.h
index de2578ab6b..7f5b1a5430 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -161,14 +161,13 @@ PERLVAR(Isys_intern, struct interp_intern) /* platform internals */
#endif
/* more statics moved here */
-PERLVAR(Imh, HE) /* from hv.c */
PERLVARI(Igeneration, int, 100) /* from op.c */
PERLVAR(IDBcv, CV *) /* from perl.c */
PERLVAR(Iarchpat_auto, char*) /* from perl.c */
PERLVAR(Isortcxix, I32) /* from pp_ctl.c */
PERLVAR(Ilastgotoprobe, OP*) /* from pp_ctl.c */
PERLVAR(Iregdummy, regnode) /* from regcomp.c */
-PERLVAR(Iregparse, char*) /* Input-scan pointer. */
+PERLVAR(Iregcomp_parse, char*) /* Input-scan pointer. */
PERLVAR(Iregxend, char*) /* End of input for compile */
PERLVAR(Iregcode, regnode*) /* Code-emit pointer; &regdummy = don't. */
PERLVAR(Iregnaughty, I32) /* How bad is this pattern? */
@@ -182,7 +181,7 @@ PERLVAR(Iregflags, U16) /* are we folding, multilining? */
PERLVAR(Iregseen, U32) /* from regcomp.c */
PERLVAR(Iseen_zerolen, I32) /* from regcomp.c */
-PERLVAR(Irx, regexp *) /* from regcomp.c */
+PERLVAR(Iregcomp_rx, regexp *) /* from regcomp.c */
PERLVAR(Iextralen, I32) /* from regcomp.c */
#ifdef DEBUGGING
PERLVAR(Icolorset, int) /* from regcomp.c */