X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/f6e654658b26268259b9dbe2e365d77cb6cacfab..e85f62dedbf5704d3f7c3d4e228515d52bfc9e30:/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"); }