(jm_INCLUDED_REGEX): Don't use Latin-1 in C source code; use \371
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 6 Aug 2003 06:13:54 +0000 (06:13 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 6 Aug 2003 06:13:54 +0000 (06:13 +0000)
instead.

m4/regex.m4

index 69d56af..6df43ca 100644 (file)
@@ -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 <stolfi@ic.unicamp.br>.  */
            memset (&regex, 0, sizeof (regex));
-           s = re_compile_pattern ("[[anรน]]*n", 7, &regex);
+           s = re_compile_pattern ("[[an\371]]*n", 7, &regex);
            if (s)
              exit (1);