diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-01-14 16:10:54 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-01-14 16:10:54 +0000 |
commit | b47b7e599cdd7224bc23222ddfd89205dbb5c997 (patch) | |
tree | 63c7ba758fff95d4bf3c0aa847ebf004999b98d4 /perlio.h | |
parent | 238a4c30b3724d314933955c5c4a0162eae05ee0 (diff) | |
download | perl-b47b7e599cdd7224bc23222ddfd89205dbb5c997.tar.gz |
Inverted sense of special-ness of specialCopIO - supposed to
be true if value is "special" i.e. NOT an SV.
p4raw-id: //depot/perlio@14257
Diffstat (limited to 'perlio.h')
-rw-r--r-- | perlio.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -149,7 +149,7 @@ extern void PerlIO_clone(pTHX_ PerlInterpreter *proto, CLONE_PARAMS *param); #endif /* ifndef PERLIO_NOT_STDIO */ #endif /* PERLIO_IS_STDIO */ -#define specialCopIO(sv) ((sv) != Nullsv) +#define specialCopIO(sv) ((sv) == Nullsv) /* ----------- fill in things that have not got #define'd ---------- */ |