]> git.cameronkatri.com Git - mandoc.git/commitdiff
As pointed out by schwarze@, %T/%J renders with a normal double-quote, not
authorKristaps Dzonsons <kristaps@bsd.lv>
Sat, 25 Dec 2010 23:27:50 +0000 (23:27 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Sat, 25 Dec 2010 23:27:50 +0000 (23:27 +0000)
the fancy double-quote.

mdoc_term.c

index f6a9a0fcdf19ca049021598564ae13e6e824fa6f..b9e4b080e840c3b8d27b10ed7df82cd8a854a8f3 100644 (file)
@@ -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):