=================================================================== RCS file: /cvs/mandoc/man_term.c,v retrieving revision 1.181 retrieving revision 1.182 diff -u -p -r1.181 -r1.182 --- mandoc/man_term.c 2015/04/18 17:53:21 1.181 +++ mandoc/man_term.c 2015/04/19 14:00:19 1.182 @@ -1,4 +1,4 @@ -/* $Id: man_term.c,v 1.181 2015/04/18 17:53:21 schwarze Exp $ */ +/* $Id: man_term.c,v 1.182 2015/04/19 14:00:19 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze @@ -756,7 +756,7 @@ pre_SS(DECL_ARGS) do { n = n->prev; - } while (n != NULL && n->tok != MAN_MAX && + } while (n != NULL && n->tok != TOKEN_NONE && termacts[n->tok].flags & MAN_NOTEXT); if (n == NULL || (n->tok == MAN_SS && n->body->child == NULL)) break;