diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-11-19 00:18:13 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-11-19 00:18:13 +0000 |
commit | 3115c839ed6794e4112ed74f768b7ab5542693b5 (patch) | |
tree | 7b09f21065751535d27bd6e14ca56a34f651dda2 /posix/regex.h | |
parent | 1b7007d267c8d84cb6a1a4ac71cff32a92c1fc01 (diff) | |
download | glibc-3115c839ed6794e4112ed74f768b7ab5542693b5.tar glibc-3115c839ed6794e4112ed74f768b7ab5542693b5.tar.gz glibc-3115c839ed6794e4112ed74f768b7ab5542693b5.tar.bz2 glibc-3115c839ed6794e4112ed74f768b7ab5542693b5.zip |
Updated to fedora-glibc-20041119T0003
Diffstat (limited to 'posix/regex.h')
-rw-r--r-- | posix/regex.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/posix/regex.h b/posix/regex.h index 4279dbcc5b..b2d9a62fec 100644 --- a/posix/regex.h +++ b/posix/regex.h @@ -179,6 +179,10 @@ typedef unsigned long int reg_syntax_t; immediately after an alternation or begin-group operator. */ #define RE_CONTEXT_INVALID_DUP (RE_CARET_ANCHORS_HERE << 1) +/* 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) + /* This global variable defines the particular regexp syntax to use (for some interfaces). When a regexp is compiled, the syntax used is stored in the pattern buffer, so changing this does not affect |