aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man.h
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
commit80da5c33753e6423f0c705cd021a073af20577a9 (patch)
tree86853f332a4ac8f07b3d088aeccb48fc5611ebc6 /man.h
parentde451aaf7a927d2994d3e526df07235dee8005af (diff)
downloadmandoc-80da5c33753e6423f0c705cd021a073af20577a9.tar.gz
mandoc-80da5c33753e6423f0c705cd021a073af20577a9.tar.zst
mandoc-80da5c33753e6423f0c705cd021a073af20577a9.zip
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.h')
-rw-r--r--man.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/man.h b/man.h
index e85da9ae..ef9480f2 100644
--- a/man.h
+++ b/man.h
@@ -1,4 +1,4 @@
-/* $Id: man.h,v 1.61 2012/06/02 20:16:23 schwarze Exp $ */
+/* $Id: man.h,v 1.62 2013/10/17 20:54:58 schwarze Exp $ */
/*
* Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -54,6 +54,8 @@ enum mant {
MAN_OP,
MAN_EX,
MAN_EE,
+ MAN_UR,
+ MAN_UE,
MAN_MAX
};