summaryrefslogtreecommitdiffstatshomepage
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
commite85f62dedbf5704d3f7c3d4e228515d52bfc9e30 (patch)
treeb51e8ef494ba59284d506123f8cb80372ff2c8d9 /term.c
parente31a0f53328be6de24f22205cc536d994540610f (diff)
downloadmandoc-e85f62dedbf5704d3f7c3d4e228515d52bfc9e30.tar.gz
mandoc-e85f62dedbf5704d3f7c3d4e228515d52bfc9e30.tar.zst
mandoc-e85f62dedbf5704d3f7c3d4e228515d52bfc9e30.zip
Fixed some character-escapes.
Diffstat (limited to 'term.c')
-rw-r--r--term.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/term.c b/term.c
index 2236703e..956bc1d6 100644
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.39 2009/03/04 13:57:35 kristaps Exp $ */
+/* $Id: term.c,v 1.40 2009/03/04 14:13:05 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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");
}