summaryrefslogtreecommitdiffstats
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-04 14:13:05 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-04 14:13:05 +0000
commit915fb21ef547b551114dab3787540221a2172ae9 (patch)
treeda47863cba43e8533e4a41121579640771034d87 /term.c
parente699e11f23b72c34a747908ff21ad93bac7905f4 (diff)
downloadmandoc-915fb21ef547b551114dab3787540221a2172ae9.tar.gz
Fixed some character-escapes.
Diffstat (limited to 'term.c')
-rw-r--r--term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term.c b/term.c
index adce8d30..33a86cdb 100644
--- a/term.c
+++ b/term.c
@@ -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");
}