diff options
author | Yves Orton <demerphq@gmail.com> | 2006-11-23 13:36:24 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-11-23 12:57:18 +0000 |
commit | bbe252da68db3f0a4d00844fdb5e30bf18a0828f (patch) | |
tree | 63d46509865ffca1ff26e61ce7efa6aac36ee476 /op.h | |
parent | b3123a6146c9098bd93ca1ae1f6d6d6744ef9c4b (diff) | |
download | perl-bbe252da68db3f0a4d00844fdb5e30bf18a0828f.tar.gz |
Cleanup regexp flags and structure
Message-ID: <9b18b3110611230336p3ce3b16du47cd5398dea8d873@mail.gmail.com>
p4raw-id: //depot/perl@29360
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -360,7 +360,9 @@ struct pmop { #define PMf_FOLD 0x4000 /* case insensitivity */ #define PMf_EXTENDED 0x8000 /* chuck embedded whitespace */ -/* mask of bits stored in regexp->reganch */ +/* mask of bits stored in regexp->extflags + these all are also called RXf_PMf_xyz + */ #define PMf_COMPILETIME (PMf_MULTILINE|PMf_SINGLELINE|PMf_LOCALE|PMf_FOLD|PMf_EXTENDED) #ifdef USE_ITHREADS |