=================================================================== RCS file: /cvs/mandoc/Attic/libmdocml.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- mandoc/Attic/libmdocml.h 2008/12/09 00:27:17 1.13 +++ mandoc/Attic/libmdocml.h 2008/12/10 14:42:46 1.14 @@ -1,4 +1,4 @@ -/* $Id: libmdocml.h,v 1.13 2008/12/09 00:27:17 kristaps Exp $ */ +/* $Id: libmdocml.h,v 1.14 2008/12/10 14:42:46 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -21,10 +21,6 @@ #include -struct md_params_xml { - int dummy; -}; - struct md_params_html { char *css; int flags; @@ -32,13 +28,13 @@ struct md_params_html { }; union md_params { - struct md_params_xml xml; struct md_params_html html; }; enum md_type { MD_XML, /* XML. */ - MD_HTML /* HTML4.01-strict. */ + MD_HTML, /* HTML4.01-strict. */ + MD_NOOP /* Validates only. */ }; struct md_args {