=================================================================== RCS file: /cvs/mandoc/main.c,v retrieving revision 1.309 retrieving revision 1.311 diff -u -p -r1.309 -r1.311 --- mandoc/main.c 2018/11/22 11:30:23 1.309 +++ mandoc/main.c 2018/12/13 11:55:46 1.311 @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.309 2018/11/22 11:30:23 schwarze Exp $ */ +/* $Id: main.c,v 1.311 2018/12/13 11:55:46 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2012, 2014-2018 Ingo Schwarze @@ -49,6 +49,7 @@ #include "roff.h" #include "mdoc.h" #include "man.h" +#include "mandoc_parse.h" #include "tag.h" #include "main.h" #include "manconf.h" @@ -405,7 +406,6 @@ main(int argc, char *argv[]) res[sz].names = NULL; res[sz].output = NULL; res[sz].ipath = SIZE_MAX; - res[sz].bits = 0; res[sz].sec = 10; res[sz].form = FORM_SRC; sz++; @@ -754,7 +754,6 @@ found: page->names = NULL; page->output = NULL; page->ipath = ipath; - page->bits = NAME_FILE & NAME_MASK; page->sec = (*sec >= '1' && *sec <= '9') ? *sec - '1' + 1 : 10; page->form = form; return 1;