=================================================================== RCS file: /cvs/mandoc/main.c,v retrieving revision 1.290 retrieving revision 1.292 diff -u -p -r1.290 -r1.292 --- mandoc/main.c 2017/05/16 19:06:30 1.290 +++ mandoc/main.c 2017/06/03 12:17:25 1.292 @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.290 2017/05/16 19:06:30 schwarze Exp $ */ +/* $Id: main.c,v 1.292 2017/06/03 12:17:25 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2012, 2014-2017 Ingo Schwarze @@ -937,7 +937,7 @@ toptions(struct curparse *curp, char *arg) curp->outtype = OUTT_ASCII; else if (0 == strcmp(arg, "lint")) { curp->outtype = OUTT_LINT; - curp->wlevel = MANDOCLEVEL_WARNING; + curp->wlevel = MANDOCLEVEL_STYLE; } else if (0 == strcmp(arg, "tree")) curp->outtype = OUTT_TREE; else if (0 == strcmp(arg, "man")) @@ -950,8 +950,6 @@ toptions(struct curparse *curp, char *arg) curp->outtype = OUTT_UTF8; else if (0 == strcmp(arg, "locale")) curp->outtype = OUTT_LOCALE; - else if (0 == strcmp(arg, "xhtml")) - curp->outtype = OUTT_HTML; else if (0 == strcmp(arg, "ps")) curp->outtype = OUTT_PS; else if (0 == strcmp(arg, "pdf"))