=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man.c,v retrieving revision 1.93 retrieving revision 1.94 diff -c -r1.93 -r1.94 *** src/usr.bin/mandoc/man.c 2014/11/28 06:26:46 1.93 --- src/usr.bin/mandoc/man.c 2014/12/28 14:39:08 1.94 *************** *** 1,4 **** ! /* $OpenBSD: man.c,v 1.93 2014/11/28 06:26:46 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: man.c,v 1.94 2014/12/28 14:39:08 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014 Ingo Schwarze *************** *** 90,96 **** } struct man * ! man_alloc(struct roff *roff, struct mparse *parse, int quick) { struct man *p; --- 90,97 ---- } struct man * ! man_alloc(struct roff *roff, struct mparse *parse, ! const char *defos, int quick) { struct man *p; *************** *** 98,103 **** --- 99,105 ---- man_hash_init(); p->parse = parse; + p->defos = defos; p->quick = quick; p->roff = roff;