From: Paul Eggert Date: Sat, 9 Aug 2003 20:04:34 +0000 (+0000) Subject: (jm_INCLUDED_REGEX): Change "\201" to "\371"; apparently Emacs's X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44e1c0fdad8ac745e26a782ff55c450ccf1ac863;p=pspp (jm_INCLUDED_REGEX): Change "\201" to "\371"; apparently Emacs's Unicode mode got confused before my 2003-08-05 checkin . --- diff --git a/m4/regex.m4 b/m4/regex.m4 index 98c6509c8a..93efa3af47 100644 --- a/m4/regex.m4 +++ b/m4/regex.m4 @@ -1,4 +1,4 @@ -#serial 18 +#serial 19 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\201]]*n", 7, ®ex); + s = re_compile_pattern ("[[an\371]]*n", 7, ®ex); if (s) exit (1);