From: Paul Eggert Date: Wed, 6 Aug 2003 06:27:39 +0000 (+0000) Subject: Whoops; it was \201, not \371. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e354723fe5d79e233806db16a12d957d9e9d06f;p=pspp Whoops; it was \201, not \371. --- diff --git a/m4/regex.m4 b/m4/regex.m4 index 6df43cac58..24355ac690 100644 --- a/m4/regex.m4 +++ b/m4/regex.m4 @@ -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\371]]*n", 7, ®ex); + s = re_compile_pattern ("[[an\201]]*n", 7, ®ex); if (s) exit (1);