2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

use ' {8}' instead of 8 literal spaces

This commit is contained in:
Mark Andrews
2014-06-03 13:22:41 +10:00
parent 50a7454174
commit 847e176103

View File

@@ -507,7 +507,7 @@ foreach $file (keys %file_types) {
s/^(\t*) {1,7}\t/$1\t/ while (/^\t* {1,7}\t/);
# Convert 8 spaces into tabs if at start of line
# or preceeded by tabs.
s/^(\t*) /$1\t/ while (/^\t* /);
s/^(\t*) {8}/$1\t/ while (/^\t* {8}/);
# Remove trailing white space.
s/[ \t]*$//;
$body = "$body$_";