summaryrefslogtreecommitdiffstats
path: root/man_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2012-01-03 15:16:24 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2012-01-03 15:16:24 +0000
commit4873b4380a189665bf89eaa8180a9fc5696c5f73 (patch)
tree29e035a9b0675bbee7fd00013cc57264156045f6 /man_macro.c
parentd807641d331b60b360442bd3bc4084baa0342b98 (diff)
downloadmandoc-4873b4380a189665bf89eaa8180a9fc5696c5f73.tar.gz
Add support for `OP', one of the extended man macros. This also requires
some man(7) changes to accomodate for the an-ext compatibility.
Diffstat (limited to 'man_macro.c')
-rw-r--r--man_macro.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/man_macro.c b/man_macro.c
index 50dd477d..bc56ae4c 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -84,6 +84,7 @@ const struct man_macro __man_macros[MAN_MAX] = {
{ in_line_eoln, 0 }, /* AT */
{ in_line_eoln, 0 }, /* in */
{ in_line_eoln, 0 }, /* ft */
+ { in_line_eoln, 0 }, /* OP */
};
const struct man_macro * const man_macros = __man_macros;