From: Rafael Garcia-Suarez Date: Fri, 26 Jan 2007 10:55:50 +0000 (+0000) Subject: Mention //w in perltodo. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ef36c6a75a14ecb6dcb87636f28264674a031e0b;p=p5sagit%2Fp5-mst-13.2.git Mention //w in perltodo. p4raw-id: //depot/perl@29998 --- diff --git a/pod/perltodo.pod b/pod/perltodo.pod index 7c7dc96..0957559 100644 --- a/pod/perltodo.pod +++ b/pod/perltodo.pod @@ -575,6 +575,16 @@ its performance to be measured, and its bugs to be easily demonstrated. Allow to delete functions. One can already undef them, but they're still in the stash. +=head2 C regex modifier + +That flag would enable to match whole words, and also to interpolate +arrays as alternations. With it, C

would be roughly equivalent to: + + do { local $"='|'; /\b(?:P)\b/ } + +See L +for the discussion. + =head2 optional optimizer Make the peephole optimizer optional. Currently it performs two tasks as