From: Gurusamy Sarathy Date: Sun, 10 Dec 1995 05:21:31 +0000 (-0500) Subject: turbidity in av.[ch] X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0a5de7f065f979dd72caec4a4531f4f7c4734c83;p=p5sagit%2Fp5-mst-13.2.git turbidity in av.[ch] Some unclean code that I noticed today. --- diff --git a/av.h b/av.h index 93dcc0c..56b6e32 100644 --- a/av.h +++ b/av.h @@ -44,5 +44,5 @@ struct xpvav { #define AvREUSED_on(av) (AvFLAGS(av) |= AVf_REUSED) #define AvREUSED_off(av) (AvFLAGS(av) &= ~AVf_REUSED) -#define AvREALISH(av) AvFLAGS(av) /* REAL or REIFY -- shortcut */ +#define AvREALISH(av) (AvFLAGS(av) & (AVf_REAL|AVf_REIFY))