aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-24 05:52:13 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-24 05:52:13 +0000
commit5328a945994f66136b209f8e2c717cb969c7f013 (patch)
tree1a5090976a5d799f17f16ca5437b72dc74f4bcf1 /mdoc_macro.c
parent42509ec027333e856b04e0acd2f35922c44b31d2 (diff)
downloadmandoc-5328a945994f66136b209f8e2c717cb969c7f013.tar.gz
mandoc-5328a945994f66136b209f8e2c717cb969c7f013.tar.zst
mandoc-5328a945994f66136b209f8e2c717cb969c7f013.zip
Added `%U' to -mdoc (doesn't render in a nice way yet).
Diffstat (limited to 'mdoc_macro.c')
-rw-r--r--mdoc_macro.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c
index 66e5faf0..c9e69fbd 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_macro.c,v 1.36 2009/09/20 17:24:57 kristaps Exp $ */
+/* $Id: mdoc_macro.c,v 1.37 2009/10/24 05:52:13 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -174,6 +174,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ in_line_eoln, 0 }, /* %Q */
{ in_line_eoln, 0 }, /* br */
{ in_line_eoln, 0 }, /* sp */
+ { in_line_eoln, 0 }, /* %U */
};
const struct mdoc_macro * const mdoc_macros = __mdoc_macros;