From 4e95b06dd6ae206969dec1cde584077b29ba6fda Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 5 Apr 2018 09:17:26 +0000 Subject: use the portable \(lq and \(rq internally rather than \(Lq and \(Rq --- 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 c3e48d0b..056c5069 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1664,7 +1664,7 @@ termp_quote_pre(DECL_ARGS) /* FALLTHROUGH */ case MDOC_Do: case MDOC_Dq: - term_word(p, "\\(Lq"); + term_word(p, "\\(lq"); break; case MDOC_En: if (NULL == n->norm->Es || @@ -1722,7 +1722,7 @@ termp_quote_post(DECL_ARGS) /* FALLTHROUGH */ case MDOC_Do: case MDOC_Dq: - term_word(p, "\\(Rq"); + term_word(p, "\\(rq"); break; case MDOC_En: if (n->norm->Es == NULL || -- cgit