summaryrefslogtreecommitdiff
path: root/m4/regex.m4
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2018-12-15 16:40:00 -0800
committerJim Meyering <meyering@fb.com>2018-12-15 16:40:00 -0800
commit01aa713b67a920703a09972e4120467751e04030 (patch)
treebfa5b97fa3d47749f5c4c8bf1222d63a20a4c451 /m4/regex.m4
parent4198a9f4cd8765929371eb93aaf30fe1753cbff4 (diff)
downloadgnulib-01aa713b67a920703a09972e4120467751e04030.tar.gz
regex: fix indentation
* m4/regex.m4 (gl_REGEX): Indent with spaces, not TABs.
Diffstat (limited to 'm4/regex.m4')
-rw-r--r--m4/regex.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/regex.m4 b/m4/regex.m4
index e3c63e7cbe..3a39b1a204 100644
--- a/m4/regex.m4
+++ b/m4/regex.m4
@@ -214,10 +214,10 @@ AC_DEFUN([gl_REGEX],
result |= 64;
/* Matching with the compiled form of this regexp would provoke
- an assertion failure prior to glibc-2.28:
- regexec.c:1375: pop_fail_stack: Assertion 'num >= 0' failed
- With glibc-2.28, compilation fails and reports the invalid
- back reference. */
+ an assertion failure prior to glibc-2.28:
+ regexec.c:1375: pop_fail_stack: Assertion 'num >= 0' failed
+ With glibc-2.28, compilation fails and reports the invalid
+ back reference. */
re_set_syntax (RE_SYNTAX_POSIX_EGREP);
memset (&regex, 0, sizeof regex);
s = re_compile_pattern ("0|()0|\\1|0", 10, &regex);