From: Kristaps Dzonsons Date: Sat, 25 Dec 2010 23:27:50 +0000 (+0000) Subject: As pointed out by schwarze@, %T/%J renders with a normal double-quote, not X-Git-Tag: VERSION_1_10_9~80 X-Git-Url: https://git.cameronkatri.com/mandoc.git/commitdiff_plain/91a083d0feb176fdee0074b9a63361f41c38a93b As pointed out by schwarze@, %T/%J renders with a normal double-quote, not the fancy double-quote. --- 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 * Copyright (c) 2010 Ingo Schwarze @@ -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):