diff options
-rw-r--r-- | mdoc_html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index c6d9b37d..22011403 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1080,7 +1080,7 @@ mdoc_bl_pre(MDOC_ARGS) return(0); if (MDOC_BLOCK != n->type) return(1); - if (MDOC_Enum != n->data.list) + if (LIST_enum != n->data.list) return(1); ord = malloc(sizeof(struct ord)); @@ -1104,7 +1104,7 @@ mdoc_bl_post(MDOC_ARGS) if (MDOC_BLOCK != n->type) return; - if (MDOC_Enum != n->data.list) + if (LIST_enum != n->data.list) return; ord = h->ords.head; |