=================================================================== RCS file: /cvs/mandoc/Attic/termact.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mandoc/Attic/termact.c 2009/02/21 21:00:06 1.2 +++ mandoc/Attic/termact.c 2009/02/22 11:23:19 1.3 @@ -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 * @@ -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, ">"); }