From: Paul Johnson Date: Mon, 14 Oct 2002 20:00:50 +0000 (+0200) Subject: Re: [PATCH] cv.h: Comment update X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bec31f9a78cb82e7861cc39e623ab1902658efbf;p=p5sagit%2Fp5-mst-13.2.git Re: [PATCH] cv.h: Comment update Message-ID: <20021014180050.GC7333@pjcj.net> p4raw-id: //depot/perl@18018 --- diff --git a/cv.h b/cv.h index 24dbec0..a595314 100644 --- a/cv.h +++ b/cv.h @@ -130,7 +130,7 @@ Returns the stash of the CV. #define CvEVAL_on(cv) (CvUNIQUE_on(cv),SvFAKE_off(cv)) #define CvEVAL_off(cv) CvUNIQUE_off(cv) -/* BEGIN|INIT|END */ +/* BEGIN|CHECK|INIT|END */ #define CvSPECIAL(cv) (CvUNIQUE(cv) && SvFAKE(cv)) #define CvSPECIAL_on(cv) (CvUNIQUE_on(cv),SvFAKE_on(cv)) #define CvSPECIAL_off(cv) (CvUNIQUE_off(cv),SvFAKE_off(cv))