=================================================================== RCS file: /cvs/mandoc/Attic/libmdocml.h,v retrieving revision 1.9 retrieving revision 1.11 diff -u -p -r1.9 -r1.11 --- mandoc/Attic/libmdocml.h 2008/11/28 11:21:12 1.9 +++ mandoc/Attic/libmdocml.h 2008/12/03 14:39:59 1.11 @@ -1,4 +1,4 @@ -/* $Id: libmdocml.h,v 1.9 2008/11/28 11:21:12 kristaps Exp $ */ +/* $Id: libmdocml.h,v 1.11 2008/12/03 14:39:59 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -21,22 +21,22 @@ #include -struct md_params_valid { +struct md_params_xml { int dummy; }; -struct md_params_html4_strict { +struct md_params_html { int dummy; }; union md_params { - struct md_params_valid valid; - struct md_params_html4_strict html4_strict; + struct md_params_xml xml; + struct md_params_html html; }; enum md_type { - MD_VALID, /* Validate input only. */ - MD_HTML4_STRICT /* HTML4.01-strict. */ + MD_XML, /* XML. */ + MD_HTML /* HTML4.01-strict. */ }; struct md_args {