From: Roland McGrath Date: Fri, 13 Dec 2002 23:45:32 +0000 (+0000) Subject: * posix/regex_internal.c (re_string_context_at): Guard wide char X-Git-Tag: upstream/2.20~13508 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=83b038f253eb2304ee0db291e1768deca72db83c;p=platform%2Fupstream%2Flinaro-glibc.git * posix/regex_internal.c (re_string_context_at): Guard wide char code with #ifdef RE_ENABLE_I18N. 2002-11-22 Paolo Bonzini * posix/regcomp.c (regcomp): __re_compile_fastmap -> re_compile_fastmap --- diff --git a/ChangeLog b/ChangeLog index d187d9d..ac29c55 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2002-12-14 Jakub Jelinek + + * posix/regex_internal.c (re_string_context_at): Guard wide char + code with #ifdef RE_ENABLE_I18N. + +2002-11-22 Paolo Bonzini + + * posix/regcomp.c (regcomp): __re_compile_fastmap -> re_compile_fastmap + 2002-12-13 Roland McGrath * posix/bug-regex15.c: New file. diff --git a/posix/regcomp.c b/posix/regcomp.c index 28831fa..876c45c 100644 --- a/posix/regcomp.c +++ b/posix/regcomp.c @@ -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. */