aboutsummaryrefslogtreecommitdiffstats
path: root/man7/queue.7
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2022-10-23 17:43:43 +0200
committerAlejandro Colomar <alx@kernel.org>2022-10-29 23:51:10 +0200
commit4279e42dd98a11b31fa4e1fcebbb00b7a677bb70 (patch)
tree68afd1d743f86e186dafa44c0376ee1861e2146a /man7/queue.7
parent2ff309be8a6205bdb3412f7fb563ba2252d9c636 (diff)
downloadman-pages-4279e42dd98a11b31fa4e1fcebbb00b7a677bb70.tar.gz
Many pages: Use .TP for tagged paragraphs
Reported-by: Mike Frysinger <vapier@gentoo.org> Cc: <groff@gnu.org> Acked-by: Douglas McIlroy <douglas.mcilroy@dartmouth.edu> Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'man7/queue.7')
-rw-r--r--man7/queue.725
1 files changed, 15 insertions, 10 deletions
diff --git a/man7/queue.7 b/man7/queue.7
index 13f89cece0..78fb4d33ee 100644
--- a/man7/queue.7
+++ b/man7/queue.7
@@ -13,16 +13,21 @@ The
.I <sys/queue.h>
header file provides a set of macros that
define and operate on the following data structures:
-.IP * 3
-singly linked lists (SLIST)
-.IP *
-doubly linked lists (LIST)
-.IP *
-singly linked tail queues (STAILQ)
-.IP *
-doubly linked tail queues (TAILQ)
-.IP *
-doubly linked circular queues (CIRCLEQ)
+.TP
+SLIST
+singly linked lists
+.TP
+LIST
+doubly linked lists
+.TP
+STAILQ
+singly linked tail queues
+.TP
+TAILQ
+doubly linked tail queues
+.TP
+CIRCLEQ
+doubly linked circular queues
.PP
All structures support the following functionality:
.IP * 3