summaryrefslogtreecommitdiff
path: root/m4/regex.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-05-21 10:52:02 +0000
committerJim Meyering <jim@meyering.net>2001-05-21 10:52:02 +0000
commit1053d6cc80fc1c82a263df1e328b68e4838047f2 (patch)
treeb6fab4325c6baea4c310f8ffc3b425212e7b1e80 /m4/regex.m4
parent0352337f1e41741fd5f4e905f37b95a772e2586d (diff)
downloadcoreutils-1053d6cc80fc1c82a263df1e328b68e4838047f2.tar.xz
Change a couple backticks to single quotes to avoid shell syntax errors.
Diffstat (limited to 'm4/regex.m4')
-rw-r--r--m4/regex.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/regex.m4 b/m4/regex.m4
index f546dd7bc..a79f03bcd 100644
--- a/m4/regex.m4
+++ b/m4/regex.m4
@@ -30,10 +30,10 @@ AC_DEFUN(jm_INCLUDED_REGEX,
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);