diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-17 19:15:41 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-17 19:15:41 +0000 |
commit | b17feb6b04d6ca8badd3ac1223dd6da9b051d357 (patch) | |
tree | cc49215280538e7630a6029a806696800b3af691 /mdoc_man.c | |
parent | 6314f1e80963a3b0062af9c80947fb76e5452a4b (diff) | |
download | mandoc-b17feb6b04d6ca8badd3ac1223dd6da9b051d357.tar.gz |
Use typographic quotes rather than '"' for .Rs %T (no change for -Tascii
output, of course). Patch from bentley@ in November 2014. This can be
committed now because groff merged Anthony's patch yesterday.
Diffstat (limited to 'mdoc_man.c')
-rw-r--r-- | mdoc_man.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -717,8 +717,7 @@ pre__t(DECL_ARGS) if (n->parent && MDOC_Rs == n->parent->tok && n->parent->norm->Rs.quote_T) { - print_word(""); - putchar('\"'); + print_word("\\(lq"); outflags &= ~MMAN_spc; } else font_push('I'); @@ -732,8 +731,7 @@ post__t(DECL_ARGS) if (n->parent && MDOC_Rs == n->parent->tok && n->parent->norm->Rs.quote_T) { outflags &= ~MMAN_spc; - print_word(""); - putchar('\"'); + print_word("\\(rq"); } else font_pop(); post_percent(meta, n); |