File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1334,12 +1334,12 @@ object type. Exposed to perl code via Internals::SvREADONLY().
13341334
13351335/* Does the SV have a Boyer-Moore table attached as magic?
13361336 * 'VALID' is a poor name, but is kept for historical reasons. */
1337- #define SvVALID (_svvalid ) ( \
1338- SvPOKp(_svvalid ) \
1339- && SvSMAGICAL(_svvalid ) \
1340- && SvMAGIC(_svvalid ) \
1341- && (SvMAGIC(_svvalid )->mg_type == PERL_MAGIC_bm \
1342- || mg_find(_svvalid , PERL_MAGIC_bm)) \
1337+ #define SvVALID (svvalid_ ) ( \
1338+ SvPOKp(svvalid_ ) \
1339+ && SvSMAGICAL(svvalid_ ) \
1340+ && SvMAGIC(svvalid_ ) \
1341+ && (SvMAGIC(svvalid_ )->mg_type == PERL_MAGIC_bm \
1342+ || mg_find(svvalid_ , PERL_MAGIC_bm)) \
13431343 )
13441344
13451345#define SvRVx (sv ) SvRV(sv)
You can’t perform that action at this time.
0 commit comments