summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-22 11:23:19 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-22 11:23:19 +0000
commit30af6cdd4f3ef74c7ebef59694b573bb3509aad0 (patch)
tree75f81f0626c0514960f90eb577b4446b10667db2
parent60e35d64ece3aeaabb2d0c25b9ab5c651c0bb48d (diff)
downloadmandoc-30af6cdd4f3ef74c7ebef59694b573bb3509aad0.tar.gz
*** empty log message ***
-rw-r--r--mdocterm.16
-rw-r--r--mdoctree.11
-rw-r--r--termact.c4
3 files changed, 9 insertions, 2 deletions
diff --git a/mdocterm.1 b/mdocterm.1
index fd4abf63..ed424ddc 100644
--- a/mdocterm.1
+++ b/mdocterm.1
@@ -64,6 +64,7 @@ which may be
for stdin.
.El
.\" PARAGRAPH
+.Pp
The
.Nm
utility is a formatting front-end for
@@ -94,6 +95,11 @@ To display this manual page:
.\" PARAGRAPH
.Pp
.D1 % mdocmterm \-Wall,error mdocmterm.1
+.\" PARAGRAPH
+.Pp
+To pipe a manual page to the pager:
+.Pp
+.D1 % mdocterm mdocterm.1 | less -R
.\" SECTION
.Sh SEE ALSO
.Xr mdoctree 1 ,
diff --git a/mdoctree.1 b/mdoctree.1
index 0174f888..ff63f3e7 100644
--- a/mdoctree.1
+++ b/mdoctree.1
@@ -64,6 +64,7 @@ which may be
for stdin.
.El
.\" PARAGRAPH
+.Pp
The
.Nm
utility is a formatting front-end for
diff --git a/termact.c b/termact.c
index 12666bbe..845dc56c 100644
--- a/termact.c
+++ b/termact.c
@@ -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, ">");
}