aboutsummaryrefslogtreecommitdiffstats
path: root/man/man2/outb.2
diff options
authorAlejandro Colomar <alx@kernel.org>2025-06-06 13:27:02 +0200
committerAlejandro Colomar <alx@kernel.org>2025-06-28 16:51:43 +0200
commit8eea66b827a11bc8983da517499cc236c6cd97ba (patch)
treeaef545da6666369425609c27752453f9f9cf45d8 /man/man2/outb.2
parent6569dd9b22d256f26928ddcc398db9f123546171 (diff)
downloadman-pages-master.tar.gz
man/: SYNOPSIS: Don't highlight forward declarations of function parametersHEADmaster
Previously, many people confused these for actual parameters, since it's hard to distinguish a ',' from ';'. By removing bold/italics from these, it will be easier to distinguish them. The cases have been found with a script: $ find -type f \ | xargs grep -l '^\.TH ' \ | sort \ | xargs mansect SYNOPSIS \ | man /dev/stdin \ | grep -e '^[^ ]' -e '[^ ]( [^ )].*[^)];' \ | less; Reported-by: Mark Naughton <mnaughto@redhat.com> Suggested-by: Mark Harris <mark.hsj@gmail.com> Acked-by: Mark Naughton <mnaughto@redhat.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'man/man2/outb.2')
-rw-r--r--man/man2/outb.212
1 files changed, 6 insertions, 6 deletions
diff --git a/man/man2/outb.2 b/man/man2/outb.2
index 8635dc30e8..df21f52a43 100644
--- a/man/man2/outb.2
+++ b/man/man2/outb.2
@@ -28,22 +28,22 @@ Standard C library
.BI "void outl(unsigned int " value ", unsigned short " port );
.BI "void outl_p(unsigned int " value ", unsigned short " port );
.P
-.BI "void insb(unsigned long " count ;
+.BR "void insb(" "unsigned long count;"
.BI " unsigned short " port ", void " addr [ count ],
.BI " unsigned long " count );
-.BI "void insw(unsigned long " count ;
+.BR "void insw(" "unsigned long count;"
.BI " unsigned short " port ", void " addr [ count ],
.BI " unsigned long " count );
-.BI "void insl(unsigned long " count ;
+.BR "void insl(" "unsigned long count;"
.BI " unsigned short " port ", void " addr [ count ],
.BI " unsigned long " count );
-.BI "void outsb(unsigned long " count ;
+.BR "void outsb(" "unsigned long count;"
.BI " unsigned short " port ", const void " addr [ count ],
.BI " unsigned long " count );
-.BI "void outsw(unsigned long " count ;
+.BR "void outsw(" "unsigned long count;"
.BI " unsigned short " port ", const void " addr [ count ],
.BI " unsigned long " count );
-.BI "void outsl(unsigned long " count ;
+.BR "void outsl(" "unsigned long count;"
.BI " unsigned short " port ", const void " addr [ count ],
.BI " unsigned long " count );
.fi