check-typo: escape slash in awk character range for greater compatibility

master
Nicolás Ojeda Bär 2018-07-01 17:19:25 +02:00
parent 8c46cb11b8
commit 396ede46f8
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ EXIT_CODE=0
$0 !~ /\t/ && length($0) > 80 {
t = utf8_decode($0);
sub(/https?:[A-Za-z0-9._~:/?#\[\]@!$&\047()*+,;=%-]{73,}$/, "", t);
sub(/https?:[A-Za-z0-9._~:\/?#\[\]@!$&\047()*+,;=%-]{73,}$/, "", t);
if (length(t) > 80) {
RSTART = 81;
RLENGTH = 0;