=================================================================== RCS file: /cvs/mandoc/man_validate.c,v retrieving revision 1.154 retrieving revision 1.156 diff -u -p -r1.154 -r1.156 --- mandoc/man_validate.c 2020/04/24 12:02:33 1.154 +++ mandoc/man_validate.c 2021/08/10 12:55:03 1.156 @@ -1,4 +1,4 @@ -/* $Id: man_validate.c,v 1.154 2020/04/24 12:02:33 schwarze Exp $ */ +/* $Id: man_validate.c,v 1.156 2021/08/10 12:55:03 schwarze Exp $ */ /* * Copyright (c) 2010, 2012-2020 Ingo Schwarze * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons @@ -239,7 +239,9 @@ check_tag(struct roff_node *n, struct roff_node *nt) case ESCAPE_FONTITALIC: case ESCAPE_FONTBI: case ESCAPE_FONTROMAN: - case ESCAPE_FONTCW: + case ESCAPE_FONTCR: + case ESCAPE_FONTCB: + case ESCAPE_FONTCI: case ESCAPE_FONTPREV: case ESCAPE_IGNORE: break; @@ -324,7 +326,7 @@ post_SH(CHKARGS) *cp = '_'; if (nc != NULL && nc->type == ROFFT_TEXT && strcmp(nc->string, tag) == 0) - tag_put(NULL, TAG_WEAK, n); + tag_put(NULL, TAG_STRONG, n); else tag_put(tag, TAG_FALLBACK, n); free(tag);