summaryrefslogtreecommitdiffstats
path: root/man.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-10-17 20:54:58 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-10-17 20:54:58 +0000
commita24894c279cda3d965668a3548d070489a8aceed (patch)
tree802cd2c3ea9060f30b957ad4a052608a76fe9b4a /man.c
parent9680b7282e62aa4b1c49f8ee927df097cbe37246 (diff)
downloadmandoc-a24894c279cda3d965668a3548d070489a8aceed.tar.gz
Implement the .UR/.UE block (uniform resource identifier) introduced in the
man-ext macros by Eric S. Raymond, enabled by default in groff_man(7). Usual disclaimer: You don't write new man(7) code, so you are not going to use these, either. Improves e.g. the bzr(1) and etherape(1) manuals. Thanks to naddy@ for bringing these to my attention.
Diffstat (limited to 'man.c')
-rw-r--r--man.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/man.c b/man.c
index 53b05816..2e9549fb 100644
--- a/man.c
+++ b/man.c
@@ -40,7 +40,8 @@ const char *const __man_macronames[MAN_MAX] = {
"RI", "na", "sp", "nf",
"fi", "RE", "RS", "DT",
"UC", "PD", "AT", "in",
- "ft", "OP", "EX", "EE"
+ "ft", "OP", "EX", "EE",
+ "UR", "UE"
};
const char * const *man_macronames = __man_macronames;