changeset 3253:ba5a061b021c

Use proper quoting so brackets appear in the test program.
author Jim Meyering <jim@meyering.net>
date Tue, 15 May 2001 14:02:19 +0000
parents f1b71ed9b120
children 27e7bf7c8631
files m4/regex.m4
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/m4/regex.m4	Sun May 13 18:24:57 2001 +0000
+++ b/m4/regex.m4	Tue May 15 14:02:19 2001 +0000
@@ -1,4 +1,4 @@
-#serial 9
+#serial 10
 
 dnl Initially derived from code in GNU grep.
 dnl Mostly written by Jim Meyering.
@@ -45,7 +45,7 @@
 
 	    /* The following example is derived from a problem report
                against gawk from Jorge Stolfi <stolfi@ic.unicamp.br>.  */
-	    s = re_compile_pattern ("[anù]*n", 7, &regex);
+	    s = re_compile_pattern ("[[anù]]*n", 7, &regex);
 	    if (s)
 	      exit (1);