summaryrefslogtreecommitdiffstatshomepage
path: root/macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-08 20:57:35 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-08 20:57:35 +0000
commit5332b9910e8f7d80dfce64caac812e91b843bdd9 (patch)
treec96fa19218ac6db74c1f999822fe4e95c707605f /macro.c
parentc744f48b5fc53bd65103347682c3cb21e22e93aa (diff)
downloadmandoc-5332b9910e8f7d80dfce64caac812e91b843bdd9.tar.gz
mandoc-5332b9910e8f7d80dfce64caac812e91b843bdd9.tar.zst
mandoc-5332b9910e8f7d80dfce64caac812e91b843bdd9.zip
Added `Lp' macro.
Diffstat (limited to 'macro.c')
-rw-r--r--macro.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/macro.c b/macro.c
index 265f7dbf..69f7896a 100644
--- a/macro.c
+++ b/macro.c
@@ -1,4 +1,4 @@
-/* $Id: macro.c,v 1.61 2009/03/08 20:50:12 kristaps Exp $ */
+/* $Id: macro.c,v 1.62 2009/03/08 20:57:35 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -182,6 +182,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ macro_constant, 0 }, /* Ud */
{ macro_constant, 0 }, /* Lb */
{ macro_constant_delimited, MDOC_CALLABLE | MDOC_PARSED }, /* Ap */
+ { macro_text, 0 }, /* Lp */
};
const struct mdoc_macro * const mdoc_macros = __mdoc_macros;