From b343672eb8f131cab803a5d48e47a2a38e3d5410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B6ppner?= Date: Wed, 12 Mar 2025 08:54:31 +0100 Subject: [PATCH] cpacfinfo: Fix missing escape sequence in man page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For the --available option the description contains a line starting with ". If", which is intended to be a punctuation and start of a new sentence but is misinterpreted by groff as a macro. As a result, the rendered paragraph is incorrectly displayed. $ man --warnings -E UTF-8 -l -Tutf8 -Z rust/cpacfinfo/man/cpacfinfo.1 troff::128: warning: macro 'If' not defined Even though it's not consistent with the rest of the man page, use the font change escape sequence and surround the specific bold formatted parts to fix this issue and correctly display the sentence. Github-ID: https://github.com/ibm-s390-linux/s390-tools/issues/170 Reviewed-by: Steffen Eiden Signed-off-by: Jan Höppner --- rust/cpacfinfo/man/cpacfinfo.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/cpacfinfo/man/cpacfinfo.1 b/rust/cpacfinfo/man/cpacfinfo.1 index 3ca2b882..f110bf24 100644 --- a/rust/cpacfinfo/man/cpacfinfo.1 +++ b/rust/cpacfinfo/man/cpacfinfo.1 @@ -124,8 +124,8 @@ Possible values for Displays the CPACF subfunctions available on the system. .B cpacfinfo \-f/\-\-functions is the same as -.B cpacfinfo \-f/\-\-functions \-a/\-\-available -. If +\fBcpacfinfo \-f/\-\-functions \-a/\-\-available\fR. +If .B -n/\-\-not-available is specified no available functions are shown. To get available as well as functions not available use .B cpacfinfo \-f/\-\-functions \-a/\-\-available \-n/\-\-not-available.