From 99f9e0ced799039092a15e576a2ba9f04fff9d0a Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 25 Jan 2011 15:17:18 +0000 Subject: Have `Bx' accept two arguments, not just one, and join these arguments with "xxBSD-yy" --- mdoc_macro.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mdoc_macro.c') 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; -- cgit