summaryrefslogtreecommitdiffstatshomepage
path: root/man_term.c
diff options
context:
space:
mode:
authorJoerg Sonnenberger <joerg@netbsd.org>2010-05-17 10:50:32 +0000
committerJoerg Sonnenberger <joerg@netbsd.org>2010-05-17 10:50:32 +0000
commit17d79257b7f65d06055aadc7b86aa5157223bfa7 (patch)
treed19d926b1a7a609ae9f37a7e374c0ba4ccb27096 /man_term.c
parent4032917dfb185b67f10a72c9c194bc2ce319a03c (diff)
downloadmandoc-17d79257b7f65d06055aadc7b86aa5157223bfa7.tar.gz
mandoc-17d79257b7f65d06055aadc7b86aa5157223bfa7.tar.zst
mandoc-17d79257b7f65d06055aadc7b86aa5157223bfa7.zip
Add support for .AT. Properly implement .UC. Add regress tests.
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/man_term.c b/man_term.c
index 09229cbe..3bee92a5 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.69 2010/05/17 10:26:49 joerg Exp $ */
+/* $Id: man_term.c,v 1.70 2010/05/17 10:50:32 joerg Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -142,6 +142,7 @@ static const struct termact termacts[MAN_MAX] = {
{ pre_sp, NULL, MAN_NOTEXT }, /* Sp */
{ pre_nf, NULL, 0 }, /* Vb */
{ pre_fi, NULL, 0 }, /* Ve */
+ { pre_ign, NULL, 0 }, /* AT */
};