From: Jarkko Hietaniemi Date: Fri, 10 Aug 2001 13:45:48 +0000 (+0000) Subject: cpp commands must start (the # must be) at the column #0. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=debc9467708937307d780c845ef1f357dcc041c6;p=p5sagit%2Fp5-mst-13.2.git cpp commands must start (the # must be) at the column #0. p4raw-id: //depot/perl@11628 --- diff --git a/op.c b/op.c index daefb14..52fd74d 100644 --- a/op.c +++ b/op.c @@ -2961,14 +2961,14 @@ Perl_newPMOP(pTHX_ I32 type, I32 flags) pmop->op_pmpermflags |= PMf_LOCALE; pmop->op_pmflags = pmop->op_pmpermflags; - #ifdef USE_ITHREADS +#ifdef USE_ITHREADS { SV* repointer = newSViv(0); av_push(PL_regex_padav,SvREFCNT_inc(repointer)); pmop->op_pmoffset = av_len(PL_regex_padav); PL_regex_pad = AvARRAY(PL_regex_padav); } - #endif +#endif /* link into pm list */ if (type != OP_TRANS && PL_curstash) {