=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.282 retrieving revision 1.283 diff -u -p -r1.282 -r1.283 --- mandoc/term.c 2020/09/02 16:40:36 1.282 +++ mandoc/term.c 2021/08/10 12:55:04 1.283 @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.282 2020/09/02 16:40:36 schwarze Exp $ */ +/* $Id: term.c,v 1.283 2021/08/10 12:55:04 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2020 Ingo Schwarze @@ -589,16 +589,18 @@ term_word(struct termp *p, const char *word) uc = *seq; break; case ESCAPE_FONTBOLD: + case ESCAPE_FONTCB: term_fontrepl(p, TERMFONT_BOLD); continue; case ESCAPE_FONTITALIC: + case ESCAPE_FONTCI: term_fontrepl(p, TERMFONT_UNDER); continue; case ESCAPE_FONTBI: term_fontrepl(p, TERMFONT_BI); continue; case ESCAPE_FONT: - case ESCAPE_FONTCW: + case ESCAPE_FONTCR: case ESCAPE_FONTROMAN: term_fontrepl(p, TERMFONT_NONE); continue;