unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: "Michael Kerrisk \(man-pages\) via Libc-alpha" <libc-alpha@sourceware.org>
To: Alejandro Colomar <colomar.6.4.3@gmail.com>
Cc: linux-man@vger.kernel.org, libc-alpha@sourceware.org,
	mtk.manpages@gmail.com
Subject: Re: [PATCH v2 00/10] list.3: New page forked from queue.3
Date: Wed, 21 Oct 2020 06:52:12 +0200	[thread overview]
Message-ID: <2384feff-161d-8936-85fa-b67970ca0fb3@gmail.com> (raw)
In-Reply-To: <20201020213107.83837-1-colomar.6.4.3@gmail.com>

Hello Alex,

On 10/20/20 11:30 PM, Alejandro Colomar wrote:
> Hi Michael,
> 
> Anyway, I did the rebase :-}

Thanks!

> This way I have a good pattern to follow in the next pages.
> And it was somewhat affordable.
> 
> Changes since v1:
> - rebase + reorder + squash
> - Minor fixes (squashed into the previous commits)
> - LIST_*.3 links now point to list.3
> - queue.3: SEE ALSO: Add list(3)

I've applied all of the patches, and pushed. You may want to
take a look at a few of the teaks I added after your commits
for some pieces that may be helpful in the next patches 
that you write for these changes.

Thanks,

Michael

> Alejandro Colomar (10):
>   list.3: New page that will hold the (list) contents of queue.3
>   list.3, queue.3: NAME: Move code from queue.3 to list.3
>   list.3, queue.3: SYNOPSIS: Move code from queue.3 to list.3
>   list.3, queue.3: DESCRIPTION: Move list specific code from queue.3 to
>     list.3
>   list.3, queue.3: EXAMPLES: Move example program from queue.3 to list.3
>   list.3: Copy and adapt code from queue.3
>   list.3: ffix: Use man markup
>   list.3: Add details
>   LIST_EMPTY.3, LIST_ENTRY.3, LIST_FIRST.3, LIST_FOREACH.3, LIST_HEAD.3,
>     LIST_HEAD_INITIALIZER.3, LIST_INIT.3, LIST_INSERT_AFTER.3,
>     LIST_INSERT_BEFORE.3, LIST_INSERT_HEAD.3, LIST_NEXT.3,
>     LIST_REMOVE.3: Link to the new list.3 page instead of queue.3
>   queue.3: SEE ALSO: Add list(3)
> 
>  man3/LIST_EMPTY.3            |   2 +-
>  man3/LIST_ENTRY.3            |   2 +-
>  man3/LIST_FIRST.3            |   2 +-
>  man3/LIST_FOREACH.3          |   2 +-
>  man3/LIST_HEAD.3             |   2 +-
>  man3/LIST_HEAD_INITIALIZER.3 |   2 +-
>  man3/LIST_INIT.3             |   2 +-
>  man3/LIST_INSERT_AFTER.3     |   2 +-
>  man3/LIST_INSERT_BEFORE.3    |   2 +-
>  man3/LIST_INSERT_HEAD.3      |   2 +-
>  man3/LIST_NEXT.3             |   2 +-
>  man3/LIST_REMOVE.3           |   2 +-
>  man3/list.3                  | 347 +++++++++++++++++++++++++++++++++++
>  man3/queue.3                 | 238 +-----------------------
>  14 files changed, 360 insertions(+), 249 deletions(-)
>  create mode 100644 man3/list.3
> 


-- 
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-10-21  4:52 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-20 14:21 [PATCH 00/22] list.3: New page forked from queue.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 01/22] list.3: New page that will hold the (list) contents of queue.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 02/22] list.3, queue.3: NAME: Move code from queue.3 to list.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 03/22] list.3: NAME: ffix: Use man markup Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 04/22] list.3: NAME: Add description Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 05/22] list.3, queue.3: SYNOPSIS: Move code from queue.3 to list.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 06/22] list.3: SYNOPSIS: Copy include from queue.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 07/22] list.3: SYNOPSIS: ffix: Use man markup Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 08/22] list.3: DESCRIPTION: Add short description Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 09/22] list.3: DESCRIPTION: Copy description about naming of macros from queue.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 10/22] list.3: DESCRIPTION: Remove unrelated code to adapt to this page Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 11/22] list.3: DESCRIPTION: ffix: Use man markup Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 12/22] list.3, queue.3: DESCRIPTION: Move list specific code from queue.3 to list.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 13/22] list.3: DESCRIPTION: ffix: Use man markup Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 14/22] list.3: DESCRIPTION: Remove line pointing to the EXAMPLES Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 15/22] list.3: CONFORMING TO: Copy from queue.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 16/22] list.3: CONFORMING TO: Adapt to this page Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 17/22] list.3: CONFORMING TO: ffix: Use man markup Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 18/22] list.3: SEE ALSO: Add insque(3) and queue(3) Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 19/22] list.3, queue.3: EXAMPLES: Move example program from queue.3 to list.3 Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 20/22] list.3: EXAMPLES: ffix: Use man markup Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 21/22] list.3: BUGS: Note LIST_FOREACH() limitations Alejandro Colomar via Libc-alpha
2020-10-20 14:21 ` [PATCH 22/22] list.3: RETURN VALUE: Add details about the return value of those macros that "return" a value Alejandro Colomar via Libc-alpha
2020-10-20 21:30   ` [PATCH v2 00/10] list.3: New page forked from queue.3 Alejandro Colomar via Libc-alpha
2020-10-21  4:52     ` Michael Kerrisk (man-pages) via Libc-alpha [this message]
2020-10-20 21:30   ` [PATCH v2 01/10] list.3: New page that will hold the (list) contents of queue.3 Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 02/10] list.3, queue.3: NAME: Move code from queue.3 to list.3 Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 03/10] list.3, queue.3: SYNOPSIS: " Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 04/10] list.3, queue.3: DESCRIPTION: Move list specific " Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 05/10] list.3, queue.3: EXAMPLES: Move example program " Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 06/10] list.3: Copy and adapt code from queue.3 Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 07/10] list.3: ffix: Use man markup Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 08/10] list.3: Add details Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 09/10] LIST_EMPTY.3, LIST_ENTRY.3, LIST_FIRST.3, LIST_FOREACH.3, LIST_HEAD.3, LIST_HEAD_INITIALIZER.3, LIST_INIT.3, LIST_INSERT_AFTER.3, LIST_INSERT_BEFORE.3, LIST_INSERT_HEAD.3, LIST_NEXT.3, LIST_REMOVE.3: Link to the new list.3 page instead of queue.3 Alejandro Colomar via Libc-alpha
2020-10-20 21:31   ` [PATCH v2 10/10] queue.3: SEE ALSO: Add list(3) Alejandro Colomar via Libc-alpha
2020-10-20 18:57 ` [PATCH 00/22] list.3: New page forked from queue.3 Michael Kerrisk (man-pages) via Libc-alpha
2020-10-20 19:21   ` Alejandro Colomar via Libc-alpha
2020-10-20 19:33     ` Michael Kerrisk (man-pages) via Libc-alpha

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

  List information: https://www.gnu.org/software/libc/involved.html

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

  git send-email \
    --in-reply-to=2384feff-161d-8936-85fa-b67970ca0fb3@gmail.com \
    --to=libc-alpha@sourceware.org \
    --cc=colomar.6.4.3@gmail.com \
    --cc=linux-man@vger.kernel.org \
    --cc=mtk.manpages@gmail.com \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).