changeset 40032:6df8a54850e1

regex: fix indentation * m4/regex.m4 (gl_REGEX): Indent with spaces, not TABs.
author Jim Meyering <meyering@fb.com>
date Sat, 15 Dec 2018 16:40:00 -0800
parents 49522e0c0097
children 507473ff985d
files ChangeLog m4/regex.m4
diffstat 2 files changed, 9 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Dec 16 00:48:58 2018 +0100
+++ b/ChangeLog	Sat Dec 15 16:40:00 2018 -0800
@@ -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.
--- a/m4/regex.m4	Sun Dec 16 00:48:58 2018 +0100
+++ b/m4/regex.m4	Sat Dec 15 16:40:00 2018 -0800
@@ -214,10 +214,10 @@
               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);