aboutsummaryrefslogtreecommitdiffstatshomepage
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
commitd78af72a5fc16f78890e7b519b7b1b5da7aabd39 (patch)
treefb82fe3d26d3f452c55faf4d6a326778c2f44e08 /mdoc_macro.c
parent7d4de02dd6695c84d1787692b20b6a2d9942a67d (diff)
downloadmandoc-d78af72a5fc16f78890e7b519b7b1b5da7aabd39.tar.gz
mandoc-d78af72a5fc16f78890e7b519b7b1b5da7aabd39.tar.zst
mandoc-d78af72a5fc16f78890e7b519b7b1b5da7aabd39.zip
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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c
index d41d6fd4..925f4a19 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_macro.c,v 1.100 2011/01/12 17:00:07 kristaps Exp $ */
+/* $Id: mdoc_macro.c,v 1.101 2011/01/25 15:17:18 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;