diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-22 11:23:19 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-22 11:23:19 +0000 |
commit | 30af6cdd4f3ef74c7ebef59694b573bb3509aad0 (patch) | |
tree | 75f81f0626c0514960f90eb577b4446b10667db2 /termact.c | |
parent | 60e35d64ece3aeaabb2d0c25b9ab5c651c0bb48d (diff) | |
download | mandoc-30af6cdd4f3ef74c7ebef59694b573bb3509aad0.tar.gz |
*** empty log message ***
Diffstat (limited to 'termact.c')
-rw-r--r-- | termact.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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, ">"); } |