diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-18 23:59:08 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-18 23:59:08 +0000 |
commit | e685d00aebe92d15022994ddc4ae0fc90fe64bee (patch) | |
tree | 34860742f1e364c03505ae25ebb3c64ba686bf19 /term.c | |
parent | 38cdc984f9af7ed09d36692dd15dbfa08eaff534 (diff) | |
download | mandoc-e685d00aebe92d15022994ddc4ae0fc90fe64bee.tar.gz |
Make any un-recognised font be considered a call for the Roman font.
This makes sequences of \f[unknown] \fP not completely puke. From a
TODO by schwarze@.
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -471,6 +471,8 @@ term_word(struct termp *p, const char *word) case (ESCAPE_FONTITALIC): term_fontrepl(p, TERMFONT_UNDER); break; + case (ESCAPE_FONT): + /* FALLTHROUGH */ case (ESCAPE_FONTROMAN): term_fontrepl(p, TERMFONT_NONE); break; |