=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_html.c,v retrieving revision 1.18 retrieving revision 1.19 diff -c -r1.18 -r1.19 *** src/usr.bin/mandoc/mdoc_html.c 2010/05/24 00:00:10 1.18 --- src/usr.bin/mandoc/mdoc_html.c 2010/05/24 12:33:06 1.19 *************** *** 1,4 **** ! /* $Id: mdoc_html.c,v 1.18 2010/05/24 00:00:10 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: mdoc_html.c,v 1.19 2010/05/24 12:33:06 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * *************** *** 1076,1082 **** return(0); if (MDOC_BLOCK != n->type) return(1); ! if (MDOC_Enum != n->data.list) return(1); ord = malloc(sizeof(struct ord)); --- 1076,1082 ---- return(0); if (MDOC_BLOCK != n->type) return(1); ! if (LIST_enum != n->data.list) return(1); ord = malloc(sizeof(struct ord)); *************** *** 1100,1106 **** if (MDOC_BLOCK != n->type) return; ! if (MDOC_Enum != n->data.list) return; ord = h->ords.head; --- 1100,1106 ---- if (MDOC_BLOCK != n->type) return; ! if (LIST_enum != n->data.list) return; ord = h->ords.head;