summaryrefslogtreecommitdiffstats
path: root/mdoc_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-25 23:27:50 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-25 23:27:50 +0000
commitfddcbef55ed448233611e8f665b6c27620ef6fc5 (patch)
treeb8bbaba303385de85e20ea381bba52a99b7b8278 /mdoc_term.c
parentcd5c755deee14b76b005ec3913de8e1b13e13580 (diff)
downloadmandoc-fddcbef55ed448233611e8f665b6c27620ef6fc5.tar.gz
As pointed out by schwarze@, %T/%J renders with a normal double-quote, not
the fancy double-quote.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index f96b9721..c76ba3d9 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1855,8 +1855,6 @@ termp_quote_pre(DECL_ARGS)
case (MDOC_Bq):
term_word(p, "[");
break;
- case (MDOC__T):
- /* FALLTHROUGH */
case (MDOC_Do):
/* FALLTHROUGH */
case (MDOC_Dq):
@@ -1867,6 +1865,8 @@ termp_quote_pre(DECL_ARGS)
case (MDOC_Pq):
term_word(p, "(");
break;
+ case (MDOC__T):
+ /* FALLTHROUGH */
case (MDOC_Qo):
/* FALLTHROUGH */
case (MDOC_Qq):
@@ -1919,8 +1919,6 @@ termp_quote_post(DECL_ARGS)
case (MDOC_Bq):
term_word(p, "]");
break;
- case (MDOC__T):
- /* FALLTHROUGH */
case (MDOC_Do):
/* FALLTHROUGH */
case (MDOC_Dq):
@@ -1931,6 +1929,8 @@ termp_quote_post(DECL_ARGS)
case (MDOC_Pq):
term_word(p, ")");
break;
+ case (MDOC__T):
+ /* FALLTHROUGH */
case (MDOC_Qo):
/* FALLTHROUGH */
case (MDOC_Qq):