=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/tbl.c,v retrieving revision 1.26 retrieving revision 1.27 diff -c -r1.26 -r1.27 *** src/usr.bin/mandoc/tbl.c 2018/12/14 05:17:45 1.26 --- src/usr.bin/mandoc/tbl.c 2018/12/14 06:33:03 1.27 *************** *** 1,4 **** ! /* $OpenBSD: tbl.c,v 1.26 2018/12/14 05:17:45 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011, 2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: tbl.c,v 1.27 2018/12/14 06:33:03 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011, 2015 Ingo Schwarze *************** *** 86,92 **** } struct tbl_node * ! tbl_alloc(int pos, int line, struct mparse *parse, struct tbl_node *last_tbl) { struct tbl_node *tbl; --- 86,92 ---- } struct tbl_node * ! tbl_alloc(int pos, int line, struct tbl_node *last_tbl) { struct tbl_node *tbl; *************** *** 95,101 **** last_tbl->next = tbl; tbl->line = line; tbl->pos = pos; - tbl->parse = parse; tbl->part = TBL_PART_OPTS; tbl->opts.tab = '\t'; tbl->opts.decimal = '.'; --- 95,100 ----