]> Savannah Git Hosting - gnulib.git/commitdiff
regex: fix indentation
authorJim Meyering <meyering@fb.com>
Sun, 16 Dec 2018 00:40:00 +0000 (16:40 -0800)
committerJim Meyering <meyering@fb.com>
Sun, 16 Dec 2018 00:40:00 +0000 (16:40 -0800)
* m4/regex.m4 (gl_REGEX): Indent with spaces, not TABs.

ChangeLog
m4/regex.m4

index 533eb7617732b119fb066754d2870de4a91337a0..e983224cc998e80acd0d1e8061646b4f9e1b9d5d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-12-15  Jim Meyering  <meyering@fb.com>
+
+       regex: fix indentation
+       * m4/regex.m4 (gl_REGEX): Indent with spaces, not TABs.
+
 2018-12-15  Bruno Haible  <bruno@clisp.org>
 
        openat-safer tests: Avoid test failure on NetBSD 8.
index e3c63e7cbe1f092fb0b4b3b04c465c9a0f2dffa4..3a39b1a20442c536a88903656639719b2861b7bf 100644 (file)
@@ -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);