summaryrefslogtreecommitdiffstats
path: root/mdoc_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-04-05 09:17:26 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-04-05 09:17:26 +0000
commit4e95b06dd6ae206969dec1cde584077b29ba6fda (patch)
tree75a39fc5a4a82e131a2fbc263268113fc850463f /mdoc_term.c
parente6d21a1c792e5000b3311d82343e74e4cb40f27b (diff)
downloadmandoc-4e95b06dd6ae206969dec1cde584077b29ba6fda.tar.gz
use the portable \(lq and \(rq internally rather than \(Lq and \(Rq
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c4
1 files changed, 2 insertions, 2 deletions
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 ||