aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-17 10:56:57 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-17 10:56:57 +0000
commit72e26562c1fc079294e29413bc0fc473e7be3bef (patch)
tree2a32a18c956c409bc6579655ba945ef4ebdb1180 /mdoc_macro.c
parent7fafcb2c03b038694a5b491d804a46d7436cc167 (diff)
downloadmandoc-72e26562c1fc079294e29413bc0fc473e7be3bef.tar.gz
mandoc-72e26562c1fc079294e29413bc0fc473e7be3bef.tar.zst
mandoc-72e26562c1fc079294e29413bc0fc473e7be3bef.zip
Added `br' and `sp' macros (requested by joerg@netbsd.org, jmc@openbsd.org).
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 b206a4f2..4a4624bf 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_macro.c,v 1.19 2009/07/12 16:34:16 kristaps Exp $ */
+/* $Id: mdoc_macro.c,v 1.20 2009/07/17 10:56:57 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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;