From: Paul Eggert Date: Wed, 6 Aug 2003 06:13:54 +0000 (+0000) Subject: (jm_INCLUDED_REGEX): Don't use Latin-1 in C source code; use \371 X-Git-Tag: cvs-readonly~4677 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=d3ebe2cfb0774a024667b711b92c396b253b3a3d;p=gnulib.git (jm_INCLUDED_REGEX): Don't use Latin-1 in C source code; use \371 instead. --- diff --git a/m4/regex.m4 b/m4/regex.m4 index 69d56af69..6df43cac5 100644 --- a/m4/regex.m4 +++ b/m4/regex.m4 @@ -1,4 +1,4 @@ -#serial 16 +#serial 17 dnl Initially derived from code in GNU grep. dnl Mostly written by Jim Meyering. @@ -52,7 +52,7 @@ AC_DEFUN([jm_INCLUDED_REGEX], /* The following example is derived from a problem report against gawk from Jorge Stolfi . */ memset (®ex, 0, sizeof (regex)); - s = re_compile_pattern ("[[anĂ¹]]*n", 7, ®ex); + s = re_compile_pattern ("[[an\371]]*n", 7, ®ex); if (s) exit (1);