From: Mark Andrews Date: Tue, 3 Jun 2014 03:22:41 +0000 (+1000) Subject: use ' {8}' instead of 8 literal spaces X-Git-Tag: v9.11.0a1~1580 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=847e176103f14229f8b0cd4f7b3e3a2d76aac1a9;p=thirdparty%2Fbind9.git use ' {8}' instead of 8 literal spaces --- diff --git a/util/update_copyrights b/util/update_copyrights index 79cf8b74de3..75dcdec4be7 100644 --- a/util/update_copyrights +++ b/util/update_copyrights @@ -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$_";