changeset 4508:13f87a2aadf4

(jm_INCLUDED_REGEX): Don't use Latin-1 in C source code; use \371 instead.
author Paul Eggert <eggert@cs.ucla.edu>
date Wed, 06 Aug 2003 06:13:54 +0000
parents 5723a1070053
children bcef57c5df67
files m4/regex.m4
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 @@
 	    /* 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);