aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-05-18 23:59:08 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-05-18 23:59:08 +0000
commitdd0cac76b8c2d4067ba6cb936ca1f43f6bebeadb (patch)
tree5351c3ad6c99e747a976b1949720c4f9fd71a565 /term.c
parent3037835dd1f5601b421e54ea434b1d87e9f5a26f (diff)
downloadmandoc-dd0cac76b8c2d4067ba6cb936ca1f43f6bebeadb.tar.gz
mandoc-dd0cac76b8c2d4067ba6cb936ca1f43f6bebeadb.tar.zst
mandoc-dd0cac76b8c2d4067ba6cb936ca1f43f6bebeadb.zip
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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/term.c b/term.c
index 04d55d67..97a9ecab 100644
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.194 2011/05/17 22:32:45 kristaps Exp $ */
+/* $Id: term.c,v 1.195 2011/05/18 23:59:08 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;