From: Ken Hornstein Date: Tue, 2 Dec 2014 18:00:47 +0000 (-0500) Subject: Turns out those warnings for ali(1) actually happen when the prefix is X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/8206fbfd5d6fefa94733293d5cb69deb82cf94d0?ds=inline;hp=--cc Turns out those warnings for ali(1) actually happen when the prefix is 33 characters, not 35. --- 8206fbfd5d6fefa94733293d5cb69deb82cf94d0 diff --git a/test/manpages/test-manpages b/test/manpages/test-manpages index 315754b2..6b2ee95a 100755 --- a/test/manpages/test-manpages +++ b/test/manpages/test-manpages @@ -37,7 +37,7 @@ warnings="-ww" #### If the prefix is too long, groff will report that it can't break #### the `aliasfiles' line in ali.1. length=`echo $prefix | awk '{print length($0)}'` -[ $length -gt 35 ] && warnings="${warnings} -Wbreak" +[ $length -gt 32 ] && warnings="${warnings} -Wbreak" #### OpenBSD's mandoc spits out a lot of "unbalance .el request" warnings; #### -Wel suppresses them.