summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-21 05:29:10 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-21 05:29:10 +0000
commit4c2891ed1c6b8a97b3d1318b04ed56b17dd4de31 (patch)
tree66b0c0aa1fae76814595482bf9a40ad412c8dd7e /perl.h
parentc340be789461bf7b71a88fa49cdeb84bdbd0b389 (diff)
downloadperl-4c2891ed1c6b8a97b3d1318b04ed56b17dd4de31.tar.gz
part 1 of PERL_OBJECT fixes for new var names
p4raw-id: //depot/perl@1607
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl.h b/perl.h
index bcaa992d55..f1f22f0900 100644
--- a/perl.h
+++ b/perl.h
@@ -111,9 +111,9 @@ class CPerlObj;
#define PERL_OBJECT_THIS this
#define _PERL_OBJECT_THIS ,this
#define PERL_OBJECT_THIS_ this,
-#define CALLRUNOPS (this->*runops)
-#define CALLREGCOMP (this->*regcompp)
-#define CALLREGEXEC (this->*regexecp)
+#define CALLRUNOPS (this->*PL_runops)
+#define CALLREGCOMP (this->*PL_regcompp)
+#define CALLREGEXEC (this->*PL_regexecp)
#else /* !PERL_OBJECT */