@@ -367,9 +367,8 @@ struct RExC_state_t {
367367 RExC_naughty += RExC_naughty / (exp) + (add)
368368
369369#define isNON_BRACE_QUANTIFIER (c ) ((c) == '*' || (c) == '+' || (c) == '?')
370- #define isQUANTIFIER (s ,e ) \
371- ( isNON_BRACE_QUANTIFIER(*s) \
372- || ((*s) == '{' && regcurly(s, e, NULL)))
370+ #define isQUANTIFIER (s ,e ) \
371+ ( isNON_BRACE_QUANTIFIER(*s) || ((*s) == '{' && regcurly(s, e, NULL)))
373372
374373/*
375374 * Flags to be passed up.
@@ -691,22 +690,17 @@ static const scan_data_t zero_scan_data = {
691690
692691/* The enums for all these are ordered so things work out correctly */
693692#define LOC (get_regex_charset(RExC_flags) == REGEX_LOCALE_CHARSET)
694- #define DEPENDS_SEMANTICS \
695- (get_regex_charset(RExC_flags) \
696- == REGEX_DEPENDS_CHARSET)
693+ #define DEPENDS_SEMANTICS \
694+ (get_regex_charset(RExC_flags) == REGEX_DEPENDS_CHARSET)
697695#define UNI_SEMANTICS (get_regex_charset(RExC_flags) == REGEX_UNICODE_CHARSET)
698- #define AT_LEAST_UNI_SEMANTICS \
699- (get_regex_charset(RExC_flags) \
700- >= REGEX_UNICODE_CHARSET)
701- #define ASCII_RESTRICTED \
702- (get_regex_charset(RExC_flags) \
703- == REGEX_ASCII_RESTRICTED_CHARSET)
696+ #define AT_LEAST_UNI_SEMANTICS \
697+ (get_regex_charset(RExC_flags) >= REGEX_UNICODE_CHARSET)
698+ #define ASCII_RESTRICTED \
699+ (get_regex_charset(RExC_flags) == REGEX_ASCII_RESTRICTED_CHARSET)
704700#define AT_LEAST_ASCII_RESTRICTED \
705- (get_regex_charset(RExC_flags) \
706- >= REGEX_ASCII_RESTRICTED_CHARSET)
707- #define ASCII_FOLD_RESTRICTED \
708- (get_regex_charset(RExC_flags) \
709- == REGEX_ASCII_MORE_RESTRICTED_CHARSET)
701+ (get_regex_charset(RExC_flags) >= REGEX_ASCII_RESTRICTED_CHARSET)
702+ #define ASCII_FOLD_RESTRICTED \
703+ (get_regex_charset(RExC_flags) == REGEX_ASCII_MORE_RESTRICTED_CHARSET)
710704
711705#define FOLD cBOOL(RExC_flags & RXf_PMf_FOLD)
712706
0 commit comments