diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2013-10-17 20:54:58 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2013-10-17 20:54:58 +0000 |
commit | a24894c279cda3d965668a3548d070489a8aceed (patch) | |
tree | 802cd2c3ea9060f30b957ad4a052608a76fe9b4a /man.c | |
parent | 9680b7282e62aa4b1c49f8ee927df097cbe37246 (diff) | |
download | mandoc-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |