From 91f0f16f2181a2ac79aecf7026518b21cf15770f Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 14 Jun 2017 22:51:25 +0000 Subject: Naive implementation of the roff(7) .po (page offset) request. This clearly works when .po is called on the top level, but might not be sophisticated enough if people call .po inside indentation-changing contexts, but i haven't seen that in manual pages (yet :). --- mdoc_man.c | 1 + 1 file changed, 1 insertion(+) (limited to 'mdoc_man.c') diff --git a/mdoc_man.c b/mdoc_man.c index a16523f6..1eebfe62 100644 --- a/mdoc_man.c +++ b/mdoc_man.c @@ -130,6 +130,7 @@ static const void_fp roff_manacts[ROFF_MAX] = { pre_ft, /* ft */ pre_onearg, /* ll */ pre_onearg, /* mc */ + pre_onearg, /* po */ pre_onearg, /* rj */ pre_sp, /* sp */ pre_ta, /* ta */ -- cgit