From e9573f136b1ae4896155ec0066bf3f7ef8bd4de0 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 17 Jul 2009 10:56:57 +0000 Subject: Added `br' and `sp' macros (requested by joerg@netbsd.org, jmc@openbsd.org). --- 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 664263e9..14b5fddd 100644 --- a/mdoc_macro.c +++ b/mdoc_macro.c @@ -172,6 +172,8 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { obsolete, 0 }, /* En */ { in_line_argn, MDOC_CALLABLE | MDOC_PARSED }, /* Dx */ { in_line_eoln, 0 }, /* %Q */ + { in_line_eoln, 0 }, /* br */ + { in_line_eoln, 0 }, /* sp */ }; const struct mdoc_macro * const mdoc_macros = __mdoc_macros; -- cgit