diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-25 15:17:18 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-25 15:17:18 +0000 |
commit | 99f9e0ced799039092a15e576a2ba9f04fff9d0a (patch) | |
tree | 6ee3c1b0bef7f50ae8d988e0792388c48da9e5de /mdoc_macro.c | |
parent | 7af39d09674498b502965c63cb5f54c73013e86b (diff) | |
download | mandoc-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.c | 2 |
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; |