This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix [RT#66098] -- stricter checking on SvIVX exposed a lack of SvIOK check
[perl5.git] / op.h
diff --git a/op.h b/op.h
index 6729f6e..dad6016 100644 (file)
--- a/op.h
+++ b/op.h
@@ -137,6 +137,7 @@ Deprecated.  Use C<GIMME_V> instead.
                                /*  On OP_SMARTMATCH, an implicit smartmatch */
                                /*  On OP_ANONHASH and OP_ANONLIST, create a
                                    reference to the new anon hash or array */
+                               /*  On OP_ENTER, store caller context */
                                /*  On OP_HELEM and OP_HSLICE, localization will be followed
                                    by assignment, so do not wipe the target if it is special
                                    (e.g. a glob or a magic SV) */
@@ -613,6 +614,10 @@ struct loop {
    cv_ckproto_len((cv), (gv), (p), (p) ? strlen(p) : 0)
 #endif
 
+#ifdef PERL_CORE
+#  define my(o)        my_attrs((o), NULL)
+#endif
+
 #ifdef USE_REENTRANT_API
 #include "reentr.h"
 #endif