diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-26 08:18:15 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-26 08:18:15 +0000 |
commit | 03ddeec98e2d42a4ed7f64e0773bfab105475220 (patch) | |
tree | 086157d72162ea60c2cebbad82325c7de9e5346e /mdoc_html.c | |
parent | dc421841e876bb44d10487c5107d5c931123afa2 (diff) | |
download | mandoc-03ddeec98e2d42a4ed7f64e0773bfab105475220.tar.gz |
Portability: replaced queue macros in html.c (Joerg Sonnenberger).
Fixed "-o" residue.
Added "-O" to usage() (-o didn't appear there either).
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 552ac3df..d659abff 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -16,7 +16,6 @@ */ #include <sys/types.h> #include <sys/param.h> -#include <sys/queue.h> #include <assert.h> #include <ctype.h> @@ -417,7 +416,7 @@ print_mdoc_node(MDOC_ARGS) struct tag *t; child = 1; - t = SLIST_FIRST(&h->tags); + t = h->tags.head; bufinit(h); switch (n->type) { @@ -981,7 +980,7 @@ mdoc_it_head_pre(MDOC_ARGS, int type, struct roffsu *width) print_otag(h, TAG_SPAN, 1, &tag); break; case (MDOC_Enum): - ord = SLIST_FIRST(&h->ords); + ord = h->ords.head; assert(ord); nbuf[BUFSIZ - 1] = 0; (void)snprintf(nbuf, BUFSIZ - 1, "%d.", ord->pos++); @@ -1116,7 +1115,8 @@ mdoc_bl_pre(MDOC_ARGS) err(EXIT_FAILURE, "malloc"); ord->cookie = n; ord->pos = 1; - SLIST_INSERT_HEAD(&h->ords, ord, entry); + ord->next = h->ords.head; + h->ords.head = ord; return(1); } @@ -1132,9 +1132,9 @@ mdoc_bl_post(MDOC_ARGS) if (MDOC_Enum != a2list(n)) return; - ord = SLIST_FIRST(&h->ords); + ord = h->ords.head; assert(ord); - SLIST_REMOVE_HEAD(&h->ords, entry); + h->ords.head = ord->next; free(ord); } |