summaryrefslogtreecommitdiffstatshomepage
path: root/termact.c
diff options
context:
space:
mode:
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, ">");
}