public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
From: "Michael Kerrisk (man-pages)" <mtk.manpages@gmail.com>
To: Alejandro Colomar <colomar.6.4.3@gmail.com>
Cc: mtk.manpages@gmail.com, linux-man@vger.kernel.org,
	libc-alpha@sourceware.org
Subject: Re: [PATCH 5/9] system_data_types.7: srcfix: cosmetic: Visually sparate types
Date: Fri, 18 Sep 2020 23:14:10 +0200	[thread overview]
Message-ID: <71a5a790-3c19-2039-346b-a66056bb1449@gmail.com> (raw)
In-Reply-To: <20200918170442.94920-6-colomar.6.4.3@gmail.com>

On 9/18/20 7:04 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>


Thanks, Alex. Good idea. Patch applied.

Cheers,

Michael


> ---
>  man7/system_data_types.7 | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
> index 53c289e31..8c0c78954 100644
> --- a/man7/system_data_types.7
> +++ b/man7/system_data_types.7
> @@ -61,6 +61,7 @@ system_data_types \- overview of system data types
>  .\"		* Notes (optional)
>  .\"
>  .\"		* See also
> +.\"------------------------------------- ptrdiff_t --------------------/
>  .TP
>  .I ptrdiff_t
>  .IP
> @@ -81,6 +82,7 @@ See also the
>  and
>  .I ssize_t
>  types in this page.
> +.\"------------------------------------- regmatch_t -------------------/
>  .TP
>  .I regmatch_t
>  .IP
> @@ -103,6 +105,7 @@ Conforming to: POSIX.1-2001 and later.
>  .IP
>  See also:
>  .BR regexec (3)
> +.\"------------------------------------- regoff_t ---------------------/
>  .TP
>  .I regoff_t
>  .IP
> @@ -132,6 +135,7 @@ structure and the
>  and
>  .I ssize_t
>  types in this page.
> +.\"------------------------------------- sigevent ---------------------/
>  .TP
>  .I sigevent
>  .IP
> @@ -177,6 +181,7 @@ See also:
>  .\"See also the
>  .\".I aiocb	FIXME
>  .\"structure in this page.
> +.\"------------------------------------- sigval -----------------------/
>  .TP
>  .I sigval
>  .IP
> @@ -206,6 +211,7 @@ structure
>  .\".I siginfo_t	FIXME
>  .\"type
>  in this page.
> +.\"------------------------------------- size_t -----------------------/
>  .TP
>  .I size_t
>  .IP
> @@ -301,6 +307,7 @@ See also the
>  and
>  .I ssize_t
>  types in this page.
> +.\"------------------------------------- ssize_t ----------------------/
>  .TP
>  .I ssize_t
>  .IP
> @@ -343,6 +350,7 @@ See also the
>  and
>  .I size_t
>  types in this page.
> +.\"------------------------------------- suseconds_t ------------------/
>  .TP
>  .I suseconds_t
>  .IP
> @@ -362,6 +370,7 @@ Conforming to: POSIX.1-2001 and later.
>  See also the
>  .I timeval
>  structure in this page.
> +.\"------------------------------------- time_t -----------------------/
>  .TP
>  .I time_t
>  .IP
> @@ -402,6 +411,7 @@ See also:
>  .BR time (2),
>  .BR ctime (3),
>  .BR difftime (3)
> +.\"------------------------------------- timer_t ----------------------/
>  .TP
>  .I timer_t
>  .IP
> @@ -422,6 +432,7 @@ See also:
>  .BR timer_delete (2),
>  .BR timer_getoverrun (2),
>  .BR timer_settime (2)
> +.\"------------------------------------- timespec ---------------------/
>  .TP
>  .I timespec
>  .IP
> @@ -457,6 +468,7 @@ See also:
>  .BR nanosleep (2),
>  .BR timerfd_gettime (2),
>  .BR timer_gettime (2)
> +.\"------------------------------------- timeval ----------------------/
>  .TP
>  .I timeval
>  .IP
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

  reply	other threads:[~2020-09-18 21:14 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-18 17:04 [PATCH 0/9] Document aiocb, sigevent, siginfo_t Alejandro Colomar
2020-09-18 17:04 ` [PATCH 1/9] system_data_types.7: ffix Alejandro Colomar
2020-09-18 20:49   ` Michael Kerrisk (man-pages)
2020-09-18 17:04 ` [PATCH 2/9] system_data_types.7: srcfix: Add FIXME note: Add descriptions Alejandro Colomar
2020-09-18 20:50   ` Michael Kerrisk (man-pages)
2020-09-18 21:03     ` Michael Kerrisk (man-pages)
2020-09-18 21:35       ` Alejandro Colomar
2020-09-18 17:04 ` [PATCH 3/9] system_data_types.7: Document sigevent Alejandro Colomar
2020-09-18 21:09   ` Michael Kerrisk (man-pages)
2020-09-18 21:36     ` Alejandro Colomar
2020-09-18 17:04 ` [PATCH 4/9] sigevent.3: New link to new documented type in system_data_types(7) Alejandro Colomar
2020-09-18 21:10   ` Michael Kerrisk (man-pages)
2020-09-18 21:39     ` Alejandro Colomar
2020-09-18 21:43       ` Michael Kerrisk (man-pages)
2020-09-18 21:57         ` Alejandro Colomar
2020-09-19  8:11           ` Michael Kerrisk (man-pages)
2020-09-18 17:04 ` [PATCH 5/9] system_data_types.7: srcfix: cosmetic: Visually sparate types Alejandro Colomar
2020-09-18 21:14   ` Michael Kerrisk (man-pages) [this message]
2020-09-18 17:04 ` [PATCH 6/9] system_data_types.7: Document aiocb Alejandro Colomar
2020-09-18 17:04 ` [PATCH 7/9] aiocb.3: New link to new documented type in system_data_types(7) Alejandro Colomar
2020-09-18 21:28   ` Michael Kerrisk (man-pages)
2020-09-18 17:04 ` [PATCH 8/9] system_data_types.7: Document siginfo_t Alejandro Colomar
2020-09-18 21:42   ` Michael Kerrisk (man-pages)
2020-09-18 21:45     ` Alejandro Colomar
2020-09-20 18:05     ` [PATCH v2 " Alejandro Colomar
2020-09-20 20:19       ` Michael Kerrisk (man-pages)
2020-09-20 18:05     ` [PATCH v2 9/9] siginfo_t.3: New link to new documented type in system_data_types(7) Alejandro Colomar
2020-09-20 20:19       ` Michael Kerrisk (man-pages)
2020-09-18 17:04 ` [PATCH " Alejandro Colomar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=71a5a790-3c19-2039-346b-a66056bb1449@gmail.com \
    --to=mtk.manpages@gmail.com \
    --cc=colomar.6.4.3@gmail.com \
    --cc=libc-alpha@sourceware.org \
    --cc=linux-man@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox