diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-06-17 11:03:41 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-06-17 11:03:41 +0300 |
commit | 61e6d1bdd8bb6518d6293ddf2da845c4195d8535 (patch) | |
tree | 7d161dafa8727b63fa867f5463d6474a33565a44 /regex.h | |
parent | 0479a809ad3a0a0437ce16f889d7b07a09c39323 (diff) | |
download | egawk-61e6d1bdd8bb6518d6293ddf2da845c4195d8535.tar.gz egawk-61e6d1bdd8bb6518d6293ddf2da845c4195d8535.tar.bz2 egawk-61e6d1bdd8bb6518d6293ddf2da845c4195d8535.zip |
Put RRI into code.
Diffstat (limited to 'regex.h')
-rw-r--r-- | regex.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -184,10 +184,6 @@ typedef unsigned long int reg_syntax_t; /* If this bit is set, then no_sub will be set to 1 during re_compile_pattern. */ # define RE_NO_SUB (RE_CONTEXT_INVALID_DUP << 1) - -/* If this bit is set, then ranges act like they are in - the "C" locale. */ -# define RE_RANGES_IGNORE_LOCALES (RE_NO_SUB << 1) #endif /* This global variable defines the particular regexp syntax to use (for @@ -213,7 +209,6 @@ extern reg_syntax_t re_syntax_options; #define RE_SYNTAX_GNU_AWK \ ((RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS \ - | RE_RANGES_IGNORE_LOCALES \ | RE_INVALID_INTERVAL_ORD) \ & ~(RE_DOT_NOT_NULL | RE_CONTEXT_INDEP_OPS \ | RE_CONTEXT_INVALID_OPS )) |