diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-09-14 12:57:31 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-09-14 12:57:31 +0000 |
commit | edae807eb552e54c5bdc0ace2b9d7dcaadbe761f (patch) | |
tree | 72ff7979213d8c7a26cb5aa0d7e72c65eb43204e /usr.bin/mandoc | |
parent | e5fa8e77bc4e9d2b79bac5edd5bd3d7ad49f7bb4 (diff) |
The .Dv macro actually forces normal font.
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/mdoc_term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_term.c b/usr.bin/mandoc/mdoc_term.c index 5f7d073481e..3ab4c2130ec 100644 --- a/usr.bin/mandoc/mdoc_term.c +++ b/usr.bin/mandoc/mdoc_term.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mdoc_term.c,v 1.223 2015/07/25 14:28:40 schwarze Exp $ */ +/* $OpenBSD: mdoc_term.c,v 1.224 2015/09/14 12:57:30 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010, 2012-2015 Ingo Schwarze <schwarze@openbsd.org> @@ -144,7 +144,7 @@ static const struct termact termacts[MDOC_MAX] = { { termp_under_pre, NULL }, /* Ar */ { termp_cd_pre, NULL }, /* Cd */ { termp_bold_pre, NULL }, /* Cm */ - { NULL, NULL }, /* Dv */ + { termp_li_pre, NULL }, /* Dv */ { termp_er_pre, NULL }, /* Er */ { termp_tag_pre, NULL }, /* Ev */ { termp_ex_pre, NULL }, /* Ex */ |