From: Abhijit Menon-Sen Date: Mon, 17 Sep 2001 16:51:18 +0000 (+0000) Subject: Its a nit! X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8ca6097c3c96a785ec489d2c1c1ea6d19b54409a;p=p5sagit%2Fp5-mst-13.2.git Its a nit! p4raw-id: //depot/perl@12057 --- diff --git a/sv.h b/sv.h index c5b82c2..0b3aba2 100644 --- a/sv.h +++ b/sv.h @@ -705,7 +705,7 @@ and leaves the UTF8 status as it was. #ifdef USE_ITHREADS /* The following uses the FAKE flag to show that a regex pointer is infact - it's own offset in the regexpad for ithreads */ + its own offset in the regexpad for ithreads */ #define SvREPADTMP(sv) (SvFLAGS(sv) & SVf_FAKE) #define SvREPADTMP_on(sv) (SvFLAGS(sv) |= SVf_FAKE) #define SvREPADTMP_off(sv) (SvFLAGS(sv) &= ~SVf_FAKE)