CVSROOT: /cvs Module name: src Changes by: schwa...@cvs.openbsd.org 2025/07/27 10:14:04
Modified files: regress/usr.bin/mandoc/man/B: Makefile nest.out_ascii Log message: The commit message of groff commit 5ea945c8 (gbranden@ May 6, 2021) clearly indicates that groff_man(7) is intended to render italic font inside section headers as bold italic. It says: "If \*[HF] is a bold style, substitute bold italics for italics in section and subsection headings, keeping the font weight consistent." In man_term.c rev. 1.201, mandoc(1) was changed to match groff's intention, so change the desired output accordingly. However, gbranden@ obviously didn't bother to understand how the code in an.tmac works before changing it, so his implementation only works for same-line scope, not for the next-line scope tested here, even though next-line scope is documented in groff_man(7). For now, mark the test impacted by this new groff bug with SKIP_GROFF.