aboutsummaryrefslogtreecommitdiffstats
path: root/man/man3/getspnam.3
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/man3/getspnam.3
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/man3/getspnam.3')
-rw-r--r--man/man3/getspnam.38
1 files changed, 4 insertions, 4 deletions
diff --git a/man/man3/getspnam.3 b/man/man3/getspnam.3
index 16b57fa361..f49d877273 100644
--- a/man/man3/getspnam.3
+++ b/man/man3/getspnam.3
@@ -33,20 +33,20 @@ Standard C library
/* GNU extension */
.B #include <shadow.h>
.P
-.BI "int getspent_r(size_t " size ;
+.BR "int getspent_r(" "size_t size;"
.BI " struct spwd *" spbuf ,
.BI " char " buf [ size "], size_t " size ", \
struct spwd **" spbufp );
-.BI "int getspnam_r(size_t " size ;
+.BR "int getspnam_r(" "size_t size;"
.BI " const char *" name ", struct spwd *" spbuf ,
.BI " char " buf [ size "], size_t " size ", \
struct spwd **" spbufp );
.P
-.BI "int fgetspent_r(size_t " size ;
+.BR "int fgetspent_r(" "size_t size;"
.BI " FILE *" stream ", struct spwd *" spbuf ,
.BI " char " buf [ size "], size_t " size ", \
struct spwd **" spbufp );
-.BI "int sgetspent_r(size_t " size ;
+.BR "int sgetspent_r(" "size_t size;"
.BI " const char *" s ", struct spwd *" spbuf ,
.BI " char " buf [ size "], size_t " size ", \
struct spwd **" spbufp );