]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_term.c
Decouple the token code for "no request or macro" from the individual
[mandoc.git] / man_term.c
index 08a87f0f378877f763e1e434de36b5545eb97d43..2ab8ea3e90e013af33dd896d01cbcb5922ffdae5 100644 (file)
@@ -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 <kristaps@bsd.lv>
  * Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;