aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit91a083d0feb176fdee0074b9a63361f41c38a93b (patch)
tree2dbd5a273f82146e7f2dc73016f9aebdb0c6b985 /mdoc_term.c
parentc9e80a007b446796d182d2e716659df296725f5a (diff)
downloadmandoc-91a083d0feb176fdee0074b9a63361f41c38a93b.tar.gz
mandoc-91a083d0feb176fdee0074b9a63361f41c38a93b.tar.zst
mandoc-91a083d0feb176fdee0074b9a63361f41c38a93b.zip
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.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index f6a9a0fc..b9e4b080 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.204 2010/12/25 23:25:53 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.205 2010/12/25 23:27:50 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -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):