summaryrefslogtreecommitdiffstatshomepage
path: root/termact.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-22 11:23:19 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-22 11:23:19 +0000
commit621648b3b0a34af595f1b79705e6b0a2a9e391a7 (patch)
tree45321efaf6adabcb8068178267ffe6f23ea8c831 /termact.c
parent9275a05a090b366b47ed479d15472e058b8d8318 (diff)
downloadmandoc-621648b3b0a34af595f1b79705e6b0a2a9e391a7.tar.gz
mandoc-621648b3b0a34af595f1b79705e6b0a2a9e391a7.tar.zst
mandoc-621648b3b0a34af595f1b79705e6b0a2a9e391a7.zip
*** empty log message ***
Diffstat (limited to 'termact.c')
-rw-r--r--termact.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/termact.c b/termact.c
index da44ce51..b1d77b2d 100644
--- a/termact.c
+++ b/termact.c
@@ -1,4 +1,4 @@
-/* $Id: termact.c,v 1.2 2009/02/21 21:00:06 kristaps Exp $ */
+/* $Id: termact.c,v 1.3 2009/02/22 11:23:19 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -618,7 +618,7 @@ termp_aq_pre(DECL_ARGS)
if (MDOC_BODY != node->type)
return(1);
- word(p, "\\<");
+ word(p, "<");
p->flags |= TERMP_NOSPACE;
return(1);
}
@@ -632,7 +632,7 @@ termp_aq_post(DECL_ARGS)
if (MDOC_BODY != node->type)
return;
p->flags |= TERMP_NOSPACE;
- word(p, "\\>");
+ word(p, ">");
}