From 6e512bc2beef5b8b17502db7edf50b5984776318 Mon Sep 17 00:00:00 2001 From: Tomasz Konojacki Date: Fri, 4 Jun 2021 22:05:04 +0200 Subject: replace all instances of PERL_IMPLICIT_CONTEXT with MULTIPLICITY Since the removal of PERL_OBJECT (acfe0abcedaf592fb4b9cb69ce3468308ae99d91) PERL_IMPLICIT_CONTEXT and MULTIPLICITY have been synonymous and they're being used interchangeably. To simplify the code, this commit replaces all instances of PERL_IMPLICIT_CONTEXT with MULTIPLICITY. PERL_IMPLICIT_CONTEXT will stay defined for compatibility with XS modules. --- perlio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perlio.c') diff --git a/perlio.c b/perlio.c index aa85c16f8c..6e3f4cffab 100644 --- a/perlio.c +++ b/perlio.c @@ -42,7 +42,7 @@ #define PERL_IN_PERLIO_C #include "perl.h" -#ifdef PERL_IMPLICIT_CONTEXT +#ifdef MULTIPLICITY # undef dSYS # define dSYS dTHX #endif -- cgit v1.2.1