diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-25 10:37:49 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-25 10:37:49 +0000 |
commit | 3349c72d72c8acc21ae7930af2eb590dbe4617a0 (patch) | |
tree | eaafa03a110d0f89290807f36acce68a9d4d944c /mdoc_term.c | |
parent | ef0c12c03523dc1118e1aedf95ea477327b2c1cd (diff) | |
download | mandoc-3349c72d72c8acc21ae7930af2eb590dbe4617a0.tar.gz |
If %B is specified, quote %T. Noted by schwarze@ in the TODO.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index 1d01baca..ee369f09 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -2169,7 +2169,7 @@ termp__t_post(DECL_ARGS) * us instead of underlining us (for disambiguation). */ if (n->parent && MDOC_Rs == n->parent->tok && - n->parent->norm->Rs.child_J) + n->parent->norm->Rs.quote_T) termp_quote_post(p, pair, m, n); termp____post(p, pair, m, n); @@ -2185,7 +2185,7 @@ termp__t_pre(DECL_ARGS) * us instead of underlining us (for disambiguation). */ if (n->parent && MDOC_Rs == n->parent->tok && - n->parent->norm->Rs.child_J) + n->parent->norm->Rs.quote_T) return(termp_quote_pre(p, pair, m, n)); term_fontpush(p, TERMFONT_UNDER); |