summaryrefslogtreecommitdiffstats
path: root/roff.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-08-18 02:08:27 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-08-18 02:08:27 +0000
commit0dca371a35715658277a48885367f1eb97158c75 (patch)
treef0e4615581362ce6003973c6573dc0743f516feb /roff.c
parenta55868d2cb7c07237689f307d3a55b33b257de09 (diff)
downloadmandoc-0dca371a35715658277a48885367f1eb97158c75.tar.gz
implement the GNU man-ext .SY/.YS (synopsis block) macro in man(7),
used in most manual pages of the groff package
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/roff.c b/roff.c
index ea01b57f..91f4b1fb 100644
--- a/roff.c
+++ b/roff.c
@@ -335,7 +335,8 @@ const char *__roff_name[MAN_MAX + 1] = {
"nf", "fi",
"RE", "RS", "DT", "UC",
"PD", "AT", "in",
- "OP", "EX", "EE", "UR",
+ "SY", "YS", "OP",
+ "EX", "EE", "UR",
"UE", "MT", "ME", NULL
};
const char *const *roff_name = __roff_name;