changeset 3268:8f7fd08c0509

Change a couple backticks to single quotes to avoid shell syntax errors.
author Jim Meyering <jim@meyering.net>
date Mon, 21 May 2001 10:52:02 +0000
parents 56f3b831eef5
children fa89edcf4142
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
@@ -30,10 +30,10 @@
 	    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
+	    /* 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.  */
+	    /* This bracket ']' helps quote the unbalanced expression above.  */
 	    /* This should fail with _Invalid character class name_ error.  */
 	    if (!s)
 	      exit (1);