summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-05-17 14:38:34 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-05-17 14:38:34 +0000
commitae85c53a20e295bcb9eecc8a2d24955c35392839 (patch)
tree7d3d87904670286bd0a6abf5b99ccafe1e05cbfa /man_term.c
parent7585ce47e0934f9b0eabd76bf7000d02950e6e1c (diff)
downloadmandoc-ae85c53a20e295bcb9eecc8a2d24955c35392839.tar.gz
Add mode for -Tlocale. This mode, with this commit, behaves exactly
like -Tascii. While adding this, inline term_alloc() (was a one-liner), remove some switches around the terminal encoding for the symbol table (unnecessary), and split out ascii_alloc() into ascii_init(), which is also called from locale_init().
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/man_term.c b/man_term.c
index af8e45c6..f390170b 100644
--- a/man_term.c
+++ b/man_term.c
@@ -156,14 +156,7 @@ terminal_man(void *arg, const struct man *man)
p->tabwidth = term_len(p, 5);
if (NULL == p->symtab)
- switch (p->enc) {
- case (TERMENC_ASCII):
- p->symtab = mchars_alloc();
- break;
- default:
- abort();
- /* NOTREACHED */
- }
+ p->symtab = mchars_alloc();
n = man_node(man);
m = man_meta(man);