This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Rename various regex defined so that they have distinct prefixes based on their usage.
authorYves Orton <demerphq@gmail.com>
Thu, 28 Jun 2007 23:14:39 +0000 (23:14 +0000)
committerYves Orton <demerphq@gmail.com>
Thu, 28 Jun 2007 23:14:39 +0000 (23:14 +0000)
commitf1b875a0a91038690cebe55acd7ad1e37e6a2621
treeaf2c0780befa801256117288794b44649166c71f
parent7bd1e61447493a93405e0d15fe2f8a0b6bf71de1
Rename various regex defined so that they have distinct prefixes based on their usage.

RXf_ => flags used in pm_flags argument to regcomp
  and stored in the regex via rx->extflags
PREGf_ => flags stored in rx->intflags
RXapif_ => argument flags for regex named capture api
RX_BUFF_IDX_ => special indexes to represent $` $' $&
  used in the numeric capture buffer api

PREGf is untouched by this change, but RXf_ is split into RXapif and RX_BUFF_IDX_.

p4raw-id: //depot/perl@31497
mg.c
perl.h
pod/perlreapi.pod
regcomp.c
regexp.h
universal.c