diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-05 02:06:19 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-05 02:06:19 +0000 |
commit | ff9971487e60c2e6e8f7858745eea6520b1c0aa5 (patch) | |
tree | 59ed19f97ba7de3fc79a7183395fb59dfe16985f /roff_term.c | |
parent | 9ec7fd0e6d519550b4d3ae0ae9dd5c53d10e6cab (diff) | |
download | mandoc-ff9971487e60c2e6e8f7858745eea6520b1c0aa5.tar.gz |
Move handling of the roff(7) .ft request from the man(7)
modules to the new roff(7) modules. As a side effect,
mdoc(7) now handles .ft, too. Of course, do not use that.
Diffstat (limited to 'roff_term.c')
-rw-r--r-- | roff_term.c | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/roff_term.c b/roff_term.c index d96d9dd8..cd9fba37 100644 --- a/roff_term.c +++ b/roff_term.c @@ -1,6 +1,6 @@ /* $OpenBSD$ */ /* - * Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org> + * Copyright (c) 2010, 2017 Ingo Schwarze <schwarze@openbsd.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -27,9 +27,11 @@ typedef void (*roff_term_pre_fp)(ROFF_TERM_ARGS); static void roff_term_pre_br(ROFF_TERM_ARGS); +static void roff_term_pre_ft(ROFF_TERM_ARGS); static const roff_term_pre_fp roff_term_pre_acts[ROFF_MAX] = { roff_term_pre_br, /* br */ + roff_term_pre_ft, /* ft */ }; @@ -50,3 +52,29 @@ roff_term_pre_br(ROFF_TERM_ARGS) p->flags &= ~(TERMP_NOBREAK | TERMP_BRIND); } } + +static void +roff_term_pre_ft(ROFF_TERM_ARGS) +{ + switch (*n->child->string) { + case '4': + case '3': + case 'B': + term_fontrepl(p, TERMFONT_BOLD); + break; + case '2': + case 'I': + term_fontrepl(p, TERMFONT_UNDER); + break; + case 'P': + term_fontlast(p); + break; + case '1': + case 'C': + case 'R': + term_fontrepl(p, TERMFONT_NONE); + break; + default: + break; + } +} |