=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_term.c,v retrieving revision 1.202 retrieving revision 1.203 diff -c -r1.202 -r1.203 *** src/usr.bin/mandoc/mdoc_term.c 2015/01/23 14:19:52 1.202 --- src/usr.bin/mandoc/mdoc_term.c 2015/01/30 22:04:15 1.203 *************** *** 1,4 **** ! /* $OpenBSD: mdoc_term.c,v 1.202 2015/01/23 14:19:52 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: mdoc_term.c,v 1.203 2015/01/30 22:04:15 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2015 Ingo Schwarze *************** *** 289,297 **** print_mdoc_nodelist(DECL_ARGS) { ! print_mdoc_node(p, pair, meta, n); ! if (n->next) ! print_mdoc_nodelist(p, pair, meta, n->next); } static void --- 289,298 ---- print_mdoc_nodelist(DECL_ARGS) { ! while (n != NULL) { ! print_mdoc_node(p, pair, meta, n); ! n = n->next; ! } } static void