-#### OpenBSD's mandoc spits out a lot of warnings.
-case `uname -s` in
- OpenBSD) warnings="-ww -Wel $suppress_break_warning" ;;
- *) warnings="-ww $suppress_break_warning" ;;
-esac
+#### OpenBSD's mandoc spits out a lot of "unbalance .el request" warnings;
+#### -Wel suppresses them.
+groff -Tutf8 -mandoc -ww man1/ali.1 >/dev/null 2>>"$actual"
+if grep warning "$actual" >/dev/null; then
+ warnings="$warnings -Wel"
+fi
+rm -f "$actual"
+touch "$actual"