mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
* posix/regex_internal.c (re_string_context_at): Guard wide char
code with #ifdef RE_ENABLE_I18N. 2002-11-22 Paolo Bonzini <bonzini@gnu.org> * posix/regcomp.c (regcomp): __re_compile_fastmap -> re_compile_fastmap
This commit is contained in:
parent
a075623112
commit
83b038f253
@ -1,3 +1,12 @@
|
||||
2002-12-14 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* posix/regex_internal.c (re_string_context_at): Guard wide char
|
||||
code with #ifdef RE_ENABLE_I18N.
|
||||
|
||||
2002-11-22 Paolo Bonzini <bonzini@gnu.org>
|
||||
|
||||
* posix/regcomp.c (regcomp): __re_compile_fastmap -> re_compile_fastmap
|
||||
|
||||
2002-12-13 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* posix/bug-regex15.c: New file.
|
||||
|
@ -503,7 +503,7 @@ regcomp (preg, pattern, cflags)
|
||||
if (BE (ret == REG_NOERROR, 1))
|
||||
/* Compute the fastmap now, since regexec cannot modify the pattern
|
||||
buffer. This function nevers fails in this implementation. */
|
||||
(void) __re_compile_fastmap (preg);
|
||||
(void) re_compile_fastmap (preg);
|
||||
else
|
||||
{
|
||||
/* Some error occurred while compiling the expression. */
|
||||
|
Loading…
Reference in New Issue
Block a user