diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-04 14:13:05 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-04 14:13:05 +0000 |
commit | 915fb21ef547b551114dab3787540221a2172ae9 (patch) | |
tree | da47863cba43e8533e4a41121579640771034d87 /term.c | |
parent | e699e11f23b72c34a747908ff21ad93bac7905f4 (diff) | |
download | mandoc-915fb21ef547b551114dab3787540221a2172ae9.tar.gz |
Fixed some character-escapes.
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1009,7 +1009,7 @@ termp_aq_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - word(p, "<"); + word(p, "\\(la"); p->flags |= TERMP_NOSPACE; return(1); } @@ -1023,7 +1023,7 @@ termp_aq_post(DECL_ARGS) if (MDOC_BODY != node->type) return; p->flags |= TERMP_NOSPACE; - word(p, ">"); + word(p, "\\(ra"); } |