aboutsummaryrefslogtreecommitdiffstats
path: root/re.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-06-17 11:03:41 +0300
committerArnold D. Robbins <arnold@skeeve.com>2011-06-17 11:03:41 +0300
commit61e6d1bdd8bb6518d6293ddf2da845c4195d8535 (patch)
tree7d161dafa8727b63fa867f5463d6474a33565a44 /re.c
parent0479a809ad3a0a0437ce16f889d7b07a09c39323 (diff)
downloadegawk-61e6d1bdd8bb6518d6293ddf2da845c4195d8535.tar.gz
egawk-61e6d1bdd8bb6518d6293ddf2da845c4195d8535.tar.bz2
egawk-61e6d1bdd8bb6518d6293ddf2da845c4195d8535.zip
Put RRI into code.
Diffstat (limited to 're.c')
-rw-r--r--re.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/re.c b/re.c
index 2e1a37e7..234384b7 100644
--- a/re.c
+++ b/re.c
@@ -388,20 +388,6 @@ resetup()
syn = RE_SYNTAX_GNU_AWK; /* POSIX re's + GNU ops */
/*
- * As of POSIX 1003.1-2008 (see rule 7 of
- * http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html#tag_09_03_05
- * and the rationale, at http://pubs.opengroup.org/onlinepubs/9699919799/xrat/V4_xbd_chap09.html#tag_21_09_03_05)
- * POSIX changed ranges outside the POSIX locale from requiring
- * Collation Element Order to being "undefined". This gives an
- * implementation, like gawk, the freedom to do ranges as it
- * pleases.
- *
- * We very much please to always use numeric ordering, as
- * the Good Lord intended.
- */
- syn |= RE_RANGES_IGNORE_LOCALES;
-
- /*
* Interval expressions are now on by default, as POSIX is
* wide-spread enough that people want it. The do_intervals
* variable remains for use with --traditional.