In the first example, use "mandoc -a" directly rather "mandoc -l".
authorschwarze <schwarze@openbsd.org>
Tue, 8 Feb 2022 18:23:11 +0000 (18:23 +0000)
committerschwarze <schwarze@openbsd.org>
Tue, 8 Feb 2022 18:23:11 +0000 (18:23 +0000)
commite2cc53ce1bb1b4ed2741bcf3444d4577b45a534c
tree51e8ce122a081e7704b55b8b84852c4f991307c8
parent21c0b6fa66cea5aeffe9e197d81883eee9d43575
In the first example, use "mandoc -a" directly rather "mandoc -l".

It feels more natural to me to use -a directly when asking mandoc(1)
to use a pager.  The reason that "mandoc -l" does exactly the same
as "mandoc -a" is that "mandoc" is essentially "man -lc", so the -a
implied by -l negates the -c and the -l has no effect because it is
already the default for mandoc(1).

The more usual command for doing the same is "man -l foo.1 bar.1 ..."
but that's off-topic for the mandoc(1) manual page.

Patch on tech@ from Anders Damsgaard <anders at adamsgaard dot dk>.
usr.bin/mandoc/mandoc.1