=================================================================== RCS file: /cvs/mandoc/html.h,v retrieving revision 1.6 retrieving revision 1.8 diff -u -p -r1.6 -r1.8 --- mandoc/html.h 2009/09/21 14:56:56 1.6 +++ mandoc/html.h 2009/10/03 15:08:09 1.8 @@ -1,4 +1,4 @@ -/* $Id: html.h,v 1.6 2009/09/21 14:56:56 kristaps Exp $ */ +/* $Id: html.h,v 1.8 2009/10/03 15:08:09 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -82,11 +82,15 @@ struct html { int flags; #define HTML_NOSPACE (1 << 0) #define HTML_NEWLINE (1 << 1) +#define HTML_IGNDELIM (1 << 2) struct tagq tags; struct ordq ords; void *symtab; char *base; + char *base_man; char *style; + char buf[BUFSIZ]; + size_t buflen; }; void print_gen_doctype(struct html *);