diff options
author | Jim Meyering <jim@meyering.net> | 2003-08-07 09:36:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-08-07 09:36:38 +0000 |
commit | 1c50c3a60cb45493c8323356265bc864557af37a (patch) | |
tree | 75d98986eb2d24722b2c0291482bca02b539e69d | |
parent | 27498a37d0c6cdc4f13bc262d38fd95738dcd6fa (diff) | |
download | coreutils-1c50c3a60cb45493c8323356265bc864557af37a.tar.xz |
(RE_SYNTAX_POSIX_AWK): Remove SPACE in SPACE-TAB sequence.
-rw-r--r-- | lib/regex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regex.h b/lib/regex.h index 07ba1d02d..53bdd8ff4 100644 --- a/lib/regex.h +++ b/lib/regex.h @@ -193,7 +193,7 @@ extern reg_syntax_t re_syntax_options; & ~(RE_DOT_NOT_NULL | RE_INTERVALS | RE_CONTEXT_INDEP_OPS \ | RE_CONTEXT_INVALID_OPS )) -#define RE_SYNTAX_POSIX_AWK \ +#define RE_SYNTAX_POSIX_AWK \ (RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS \ | RE_INTERVALS | RE_NO_GNU_OPS) |