about summary refs log tree commit diff
path: root/posix/regcomp.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-12-13 23:45:32 +0000
committerRoland McGrath <roland@gnu.org>2002-12-13 23:45:32 +0000
commit83b038f253eb2304ee0db291e1768deca72db83c (patch)
tree6d651f7d30be34f124ed37a658e139394cc9740c /posix/regcomp.c
parenta075623112f96ed39fe027faf01fbffc62ca7ca3 (diff)
downloadglibc-83b038f253eb2304ee0db291e1768deca72db83c.tar.gz
glibc-83b038f253eb2304ee0db291e1768deca72db83c.tar.xz
glibc-83b038f253eb2304ee0db291e1768deca72db83c.zip
* 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
Diffstat (limited to 'posix/regcomp.c')
-rw-r--r--posix/regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/regcomp.c b/posix/regcomp.c
index 28831fa409..876c45c674 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.  */