File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,20 @@ get_regex_charset(const U32 flags)
101
101
102
102
/* Mask of the above bits. These need to be transferred from op_pmflags to
103
103
* re->extflags during compilation */
104
- #define RXf_PMf_COMPILETIME (RXf_PMf_MULTILINE|RXf_PMf_SINGLELINE|RXf_PMf_FOLD|RXf_PMf_EXTENDED|RXf_PMf_EXTENDED_MORE|RXf_PMf_KEEPCOPY|RXf_PMf_NOCAPTURE|RXf_PMf_CHARSET|RXf_PMf_STRICT)
105
- #define RXf_PMf_FLAGCOPYMASK (RXf_PMf_COMPILETIME|RXf_PMf_SPLIT)
104
+ #define RXf_PMf_COMPILETIME \
105
+ ( RXf_PMf_MULTILINE \
106
+ | RXf_PMf_SINGLELINE \
107
+ | RXf_PMf_FOLD \
108
+ | RXf_PMf_EXTENDED \
109
+ | RXf_PMf_EXTENDED_MORE \
110
+ | RXf_PMf_KEEPCOPY \
111
+ | RXf_PMf_NOCAPTURE \
112
+ | RXf_PMf_CHARSET \
113
+ | RXf_PMf_STRICT )
114
+
115
+ #define RXf_PMf_FLAGCOPYMASK \
116
+ ( RXf_PMf_COMPILETIME \
117
+ | RXf_PMf_SPLIT )
106
118
107
119
/* Temporary to get Jenkins happy again
108
120
* See thread starting at http://nntp.perl.org/group/perl.perl5.porters/220710
You can’t perform that action at this time.
0 commit comments