summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
eb9d95f)
the user's prefix is too long.
rm -f "$expected" "$actual"
touch "$expected" "$actual"
rm -f "$expected" "$actual"
touch "$expected" "$actual"
+#### 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 ] && suppress_break_warning=-Wbreak
+
+warnings="-ww $suppress_break_warning"
+
for manpage in man?/*.?; do
for manpage in man?/*.?; do
- groff -Tutf8 -mandoc -ww "$manpage" > /dev/null 2>>"$actual"
+ groff -Tutf8 -mandoc $warnings "$manpage" > /dev/null 2>>"$actual"
done
check "$expected" "$actual"
done
check "$expected" "$actual"