mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 06:55:30 +00:00
use $1 instead of \\1
This commit is contained in:
@@ -151,8 +151,8 @@ foreach $file (keys %file_types) {
|
|||||||
# Remove 1-7 spaces followed by a tab into a single
|
# Remove 1-7 spaces followed by a tab into a single
|
||||||
# tab if at start of line or proceeded by tabs.
|
# tab if at start of line or proceeded by tabs.
|
||||||
s/^(\t*) {1,7}\t/$1\t/ while (/^\t* {1,7}\t/);
|
s/^(\t*) {1,7}\t/$1\t/ while (/^\t* {1,7}\t/);
|
||||||
s/^(\s{0,3}\d*\.)\s(\[\w{1,5}\])\s+(\S+)/\1\t\2\t\t\3/;
|
s/^(\s{0,3}\d*\.)\s(\[\w{1,5}\])\s+(\S+)/$1\t$2\t\t$3/;
|
||||||
s/^(\s{0,3}\d*\.)\s(\[\w{6,}\])\s+(\S+)/\1\t\2\t\3/;
|
s/^(\s{0,3}\d*\.)\s(\[\w{6,}\])\s+(\S+)/$1\t$2\t$3/;
|
||||||
# Convert 8 spaces into tabs if at start of line
|
# Convert 8 spaces into tabs if at start of line
|
||||||
# or preceeded by tabs.
|
# or preceeded by tabs.
|
||||||
s/^(\t*) /$1\t/ while (/^\t* /);
|
s/^(\t*) /$1\t/ while (/^\t* /);
|
||||||
|
Reference in New Issue
Block a user