=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_term.c,v retrieving revision 1.122 retrieving revision 1.123 diff -c -r1.122 -r1.123 *** src/usr.bin/mandoc/man_term.c 2015/03/09 17:41:36 1.122 --- src/usr.bin/mandoc/man_term.c 2015/03/15 16:51:34 1.123 *************** *** 1,4 **** ! /* $OpenBSD: man_term.c,v 1.122 2015/03/09 17:41:36 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: man_term.c,v 1.123 2015/03/15 16:51:34 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze *************** *** 741,747 **** do { n = n->prev; ! } while (n != NULL && termacts[n->tok].flags & MAN_NOTEXT); if (n == NULL || (n->tok == MAN_SS && n->body->child == NULL)) break; --- 741,748 ---- do { n = n->prev; ! } while (n != NULL && n->tok != MAN_MAX && ! termacts[n->tok].flags & MAN_NOTEXT); if (n == NULL || (n->tok == MAN_SS && n->body->child == NULL)) break;