=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_argv.c,v retrieving revision 1.31 retrieving revision 1.32 diff -c -r1.31 -r1.32 *** src/usr.bin/mandoc/mdoc_argv.c 2010/06/26 17:56:43 1.31 --- src/usr.bin/mandoc/mdoc_argv.c 2010/07/13 01:09:13 1.32 *************** *** 1,6 **** ! /* $Id: mdoc_argv.c,v 1.31 2010/06/26 17:56:43 schwarze Exp $ */ /* ! * Copyright (c) 2008, 2009 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above --- 1,6 ---- ! /* $Id: mdoc_argv.c,v 1.32 2010/07/13 01:09:13 schwarze Exp $ */ /* ! * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above *************** *** 355,361 **** if (MDOC_Bl == n->tok) break; ! if (n && LIST_column == n->data.Bl.type) { fl |= ARGS_TABSEP; fl &= ~ARGS_DELIM; } --- 355,362 ---- if (MDOC_Bl == n->tok) break; ! assert(n->data.Bl); ! if (n && LIST_column == n->data.Bl->type) { fl |= ARGS_TABSEP; fl &= ~ARGS_DELIM; }