changeset 3281:88106186bcc6

(jm_INCLUDED_REGEX): Use a quadrigraph to represent an unmatched right bracket, rather than an extra, falsely-matching quote in a comment. Patch by Akim Demaille.
author Jim Meyering <jim@meyering.net>
date Sun, 24 Jun 2001 20:01:11 +0000
parents 7fed086612ed
children 25f9d57d0e32
files m4/regex.m4
diffstat 1 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/m4/regex.m4
+++ b/m4/regex.m4
@@ -1,4 +1,4 @@
-#serial 10
+#serial 11
 
 dnl Initially derived from code in GNU grep.
 dnl Mostly written by Jim Meyering.
@@ -30,10 +30,7 @@
 	    const char *s;
 	    struct re_registers regs;
 	    re_set_syntax (RE_SYNTAX_POSIX_EGREP);
-	    /* These two brackets, '[[' and the one in the comment below serve
-	       to quote the brackets (unbalanced) in the following line.  */
-	    s = re_compile_pattern ("a[[:]:]]b\n", 9, &regex);
-	    /* This bracket ']' helps quote the unbalanced expression above.  */
+	    [s = re_compile_pattern ("a[[:@:>@:]]b\n", 9, &regex);]
 	    /* This should fail with _Invalid character class name_ error.  */
 	    if (!s)
 	      exit (1);