summaryrefslogtreecommitdiffstats
path: root/mdoc_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-25 15:17:18 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-25 15:17:18 +0000
commit99f9e0ced799039092a15e576a2ba9f04fff9d0a (patch)
tree6ee3c1b0bef7f50ae8d988e0792388c48da9e5de /mdoc_macro.c
parent7af39d09674498b502965c63cb5f54c73013e86b (diff)
downloadmandoc-99f9e0ced799039092a15e576a2ba9f04fff9d0a.tar.gz
Have `Bx' accept two arguments, not just one, and join these arguments
with "xxBSD-yy"
Diffstat (limited to 'mdoc_macro.c')
-rw-r--r--mdoc_macro.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c
index 55cdc2e5..ac5b2c24 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -1461,6 +1461,8 @@ in_line_argn(MACRO_PROT_ARGS)
case (MDOC_Ux):
maxargs = 0;
break;
+ case (MDOC_Bx):
+ /* FALLTHROUGH */
case (MDOC_Xr):
maxargs = 2;
break;