From 0603d32955cc056f11f3defcb885c77f7a45741a Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Tue, 17 Feb 2015 20:37:16 +0000 Subject: Render \(lq and \(rq as '"' in -Tascii mode but leave the rendering of .Do/.Dc, .Dq, .Lb, and .St untouched. Reduces groff-mandoc differences in OpenBSD base by about 7%. Reminded of the issue by naddy@. --- mdoc_term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index 5f4f6a43..17ab4cdf 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1873,7 +1873,7 @@ termp_quote_pre(DECL_ARGS) case MDOC_Do: /* FALLTHROUGH */ case MDOC_Dq: - term_word(p, "\\(lq"); + term_word(p, "\\(Lq"); break; case MDOC_En: if (NULL == n->norm->Es || @@ -1942,7 +1942,7 @@ termp_quote_post(DECL_ARGS) case MDOC_Do: /* FALLTHROUGH */ case MDOC_Dq: - term_word(p, "\\(rq"); + term_word(p, "\\(Rq"); break; case MDOC_En: if (n->norm->Es == NULL || -- cgit