summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--roff.75
-rw-r--r--roff.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/roff.7 b/roff.7
index 4df60dec..30568620 100644
--- a/roff.7
+++ b/roff.7
@@ -935,6 +935,11 @@ Turn on no-space mode.
This line-scoped request is intended to take no arguments.
Currently, it is ignored including its arguments,
and the number of arguments is not checked.
+.Ss \&pl
+Change page length.
+This line-scoped request is intended to take one height argument.
+Currently, it is ignored including its arguments,
+and the number of arguments is not checked.
.Ss \&ps
Change point size.
This line-scoped request is intended to take one numerical argument.
diff --git a/roff.c b/roff.c
index 406485ab..4e5d5024 100644
--- a/roff.c
+++ b/roff.c
@@ -60,6 +60,7 @@ enum rofft {
ROFF_nh,
ROFF_nr,
ROFF_ns,
+ ROFF_pl,
ROFF_ps,
ROFF_rm,
ROFF_rr,
@@ -256,6 +257,7 @@ static struct roffmac roffs[ROFF_MAX] = {
{ "nh", roff_line_ignore, NULL, NULL, 0, NULL },
{ "nr", roff_nr, NULL, NULL, 0, NULL },
{ "ns", roff_line_ignore, NULL, NULL, 0, NULL },
+ { "pl", roff_line_ignore, NULL, NULL, 0, NULL },
{ "ps", roff_line_ignore, NULL, NULL, 0, NULL },
{ "rm", roff_rm, NULL, NULL, 0, NULL },
{ "rr", roff_rr, NULL, NULL, 0, NULL },