diff options
author | David Mitchell <davem@iabyn.com> | 2009-03-19 12:00:40 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2009-03-19 12:00:40 +0000 |
commit | 5e09101cdc61b91cda03341a522bd4209b0faf6f (patch) | |
tree | fdedae9a77763a46de628ddfb40828c4d595016c | |
parent | 9104b4c0ea2f05e79ccc75906324fcf43559a48a (diff) | |
download | perl-5e09101cdc61b91cda03341a522bd4209b0faf6f.tar.gz |
Don't totally eliminate Nullop; naughty code might define PERL_CORE
(an update to the merge of bcabcc50f85300b3fbf720ece84c2fd14bd909ed)
-rw-r--r-- | op.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -527,9 +527,7 @@ struct loop { #define cSVOPo_sv cSVOPx_sv(o) #define kSVOP_sv cSVOPx_sv(kid) -#ifndef PERL_CORE -# define Nullop ((OP*)NULL) -#endif +#define Nullop ((OP*)NULL) /* Lowest byte-and-a-bit of PL_opargs */ #define OA_MARK 1 |