From e85f62dedbf5704d3f7c3d4e228515d52bfc9e30 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 4 Mar 2009 14:13:05 +0000 Subject: Fixed some character-escapes. --- term.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'term.c') 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 * @@ -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"); } -- cgit v1.2.3