diff options
author | Alejandro Colomar <alx@kernel.org> | 2025-06-06 13:27:02 +0200 |
---|---|---|
committer | Alejandro Colomar <alx@kernel.org> | 2025-06-28 16:51:43 +0200 |
commit | 8eea66b827a11bc8983da517499cc236c6cd97ba (patch) | |
tree | aef545da6666369425609c27752453f9f9cf45d8 /man/man3/mq_send.3 | |
parent | 6569dd9b22d256f26928ddcc398db9f123546171 (diff) | |
download | man-pages-master.tar.gz |
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/mq_send.3')
-rw-r--r-- | man/man3/mq_send.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man/man3/mq_send.3 b/man/man3/mq_send.3 index e936772157..a52d966af2 100644 --- a/man/man3/mq_send.3 +++ b/man/man3/mq_send.3 @@ -13,14 +13,14 @@ Real-time library .nf .B #include <mqueue.h> .P -.BI "int mq_send(size_t " msg_len ; +.BR "int mq_send(" "size_t msg_len;" .BI " mqd_t " mqdes ", const char " msg_ptr [ msg_len ], .BI " size_t " msg_len ", unsigned int " msg_prio ); .P .B #include <time.h> .B #include <mqueue.h> .P -.BI "int mq_timedsend(size_t " msg_len ; +.BR "int mq_timedsend(" "size_t msg_len;" .BI " mqd_t " mqdes ", const char " msg_ptr [ msg_len ], .BI " size_t " msg_len ", unsigned int " msg_prio , .BI " const struct timespec *" abs_timeout ); |