From a5d5855671af6956a8d1a13e419457afdffeb416 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 17 Oct 2020 09:20:52 -0600 Subject: [PATCH 1/1] op.h: Restrict scope of multiconcat symbols to core These are internal only --- op.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/op.h b/op.h index 9750717..be19303 100644 --- a/op.h +++ b/op.h @@ -1072,6 +1072,8 @@ C is non-null. For a higher-level interface, see C>. #endif +#if defined(PERL_CORE) || defined(PERL_EXT) + /* Stuff for OP_MULTDEREF/pp_multideref. */ /* actions */ @@ -1111,6 +1113,8 @@ C is non-null. For a higher-level interface, see C>. #define MDEREF_MASK 0x7F #define MDEREF_SHIFT 7 +#endif /* end CORE/EXT only */ + #if defined(PERL_IN_DOOP_C) || defined(PERL_IN_PP_C) # define FATAL_ABOVE_FF_MSG \ "Use of strings with code points over 0xFF as arguments to " \ -- 1.8.3.1