aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit1c1ba65545965eff1a913c0642c80c26b5bc91de (patch)
tree5e0f475afa3ef9d3cecc8d46413128cdda7f31ad /mdoc_term.c
parentf1eb9ac11c55c6ac35cb8ea29c074c6b23f587ee (diff)
downloadmandoc-1c1ba65545965eff1a913c0642c80c26b5bc91de.tar.gz
mandoc-1c1ba65545965eff1a913c0642c80c26b5bc91de.tar.zst
mandoc-1c1ba65545965eff1a913c0642c80c26b5bc91de.zip
use the portable \(lq and \(rq internally rather than \(Lq and \(Rq
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index d2983b0e..4a163b62 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.365 2018/01/13 05:23:18 schwarze Exp $ */
+/* $Id: mdoc_term.c,v 1.366 2018/04/05 09:17:26 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2012-2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -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 ||