diff options
author | Jim Meyering <jim@meyering.net> | 2001-05-21 10:52:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-05-21 10:52:02 +0000 |
commit | 1053d6cc80fc1c82a263df1e328b68e4838047f2 (patch) | |
tree | b6fab4325c6baea4c310f8ffc3b425212e7b1e80 | |
parent | 0352337f1e41741fd5f4e905f37b95a772e2586d (diff) | |
download | coreutils-1053d6cc80fc1c82a263df1e328b68e4838047f2.tar.xz |
Change a couple backticks to single quotes to avoid shell syntax errors.
-rw-r--r-- | m4/regex.m4 | 4 |
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, ®ex); - /* 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); |