summaryrefslogtreecommitdiffstatshomepage
path: root/man_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-08-20 11:51:07 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-08-20 11:51:07 +0000
commit93b9517948ce8754648c4f1033dec11f6eeb7b93 (patch)
tree1d78933de1ee8ea09a58a2dae9334d4f5e60f71b /man_term.c
parentee5166e47bf9023c5bef7b18355da9392155a340 (diff)
downloadmandoc-93b9517948ce8754648c4f1033dec11f6eeb7b93.tar.gz
mandoc-93b9517948ce8754648c4f1033dec11f6eeb7b93.tar.zst
mandoc-93b9517948ce8754648c4f1033dec11f6eeb7b93.zip
Added `DT' macro (pointed out by joerg@netbsd.org).
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/man_term.c b/man_term.c
index 8289dd49..73b44d58 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.26 2009/08/19 11:30:40 kristaps Exp $ */
+/* $Id: man_term.c,v 1.27 2009/08/20 11:51:07 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -110,7 +110,7 @@ static const struct termact termacts[MAN_MAX] = {
{ pre_I, post_I }, /* I */
{ pre_IR, NULL }, /* IR */
{ pre_RI, NULL }, /* RI */
- { NULL, NULL }, /* na */ /* TODO: document that has no effect */
+ { NULL, NULL }, /* na */
{ pre_I, post_i }, /* i */
{ pre_sp, NULL }, /* sp */
{ pre_nf, NULL }, /* nf */
@@ -118,6 +118,7 @@ static const struct termact termacts[MAN_MAX] = {
{ pre_r, NULL }, /* r */
{ NULL, NULL }, /* RE */
{ pre_RS, post_RS }, /* RS */
+ { NULL, NULL }, /* DT */
};
#ifdef __linux__