=================================================================== RCS file: /cvs/mandoc/html.h,v retrieving revision 1.51 retrieving revision 1.55 diff -u -p -r1.51 -r1.55 --- mandoc/html.h 2014/04/20 16:46:04 1.51 +++ mandoc/html.h 2014/09/27 08:54:34 1.55 @@ -1,4 +1,4 @@ -/* $Id: html.h,v 1.51 2014/04/20 16:46:04 schwarze Exp $ */ +/* $Id: html.h,v 1.55 2014/09/27 08:54:34 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * @@ -68,6 +68,7 @@ enum htmlattr { ATTR_SUMMARY, ATTR_ALIGN, ATTR_COLSPAN, + ATTR_CHARSET, ATTR_MAX }; @@ -119,6 +120,8 @@ struct html { #define HTML_NONOSPACE (1 << 4) /* never add spaces */ #define HTML_LITERAL (1 << 5) /* literal (e.g.,
) context */
 #define	HTML_SKIPCHAR	 (1 << 6) /* skip the next character */
+#define	HTML_NOSPLIT	 (1 << 7) /* do not break line before .An */
+#define	HTML_SPLIT	 (1 << 8) /* break line before .An */
 	struct tagq	  tags; /* stack of open tags */
 	struct rofftbl	  tbl; /* current table */
 	struct tag	 *tblt; /* current open table scope */