#### 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.
rm -f "$actual"
touch "$actual"
-
for manpage in man?/*.?; do
+ LC_ALL=C grep -n '[^ -~]' /dev/null "$manpage" 2>&1 |
+ sed 's/^/non-ascii:/' >>"$actual"
groff -Tutf8 -mandoc $warnings "$manpage" >/dev/null 2>>"$actual"
done