From 1c1ba65545965eff1a913c0642c80c26b5bc91de 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mdoc_term.c') 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 * Copyright (c) 2010, 2012-2017 Ingo Schwarze @@ -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 v1.2.3