diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-07-31 21:57:05 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-08-11 10:23:35 +0200 |
commit | c18d5d15604b0d942b838c422e15b2518f56c77b (patch) | |
tree | 0674fe09a4a58f3712236388d8333a32c8b48294 /regexp.h | |
parent | bb1c6009cb7b6b922ff045cd5494bf183ec5ddbc (diff) | |
download | perl-c18d5d15604b0d942b838c422e15b2518f56c77b.tar.gz |
regexp.h: Nit in comments
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -271,13 +271,13 @@ and check for NULL. #define NONDESTRUCT_PAT_MODS "r" /* This string is expected by regcomp.c to be ordered so that the first - * character is the flag in bit 0 of extflags; the next character is bit 1, - * etc. */ + * character is the flag in bit RXf_PMf_STD_PMMOD_SHIFT of extflags; the next + * character is bit +1, etc. */ #define STD_PAT_MODS "msix" /* This string is expected by XS_re_regexp_pattern() in universal.c to be ordered - * so that the first character is the flag in bit 0 of extflags; the next - * character is bit 1, etc. */ + * so that the first character is the flag in bit RXf_PMf_STD_PMMOD_SHIFT of + * extflags; the next character is in bit +1, etc. */ #define INT_PAT_MODS STD_PAT_MODS KEEPCOPY_PAT_MODS #define EXT_PAT_MODS ONCE_PAT_MODS KEEPCOPY_PAT_MODS |