summaryrefslogtreecommitdiffstatshomepage
path: root/macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-09 14:19:59 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-09 14:19:59 +0000
commit47256a532d0082f2218355ef2693af7e78d4790b (patch)
tree00dec12ad4755f06ff1b2e1618b7585d607b7d99 /macro.c
parent8acb3c90fb3c3f33d986c8a11474138a497e1ec9 (diff)
downloadmandoc-47256a532d0082f2218355ef2693af7e78d4790b.tar.gz
mandoc-47256a532d0082f2218355ef2693af7e78d4790b.tar.zst
mandoc-47256a532d0082f2218355ef2693af7e78d4790b.zip
Added `Mt' and `Lk' macros (NetBSD).
Diffstat (limited to 'macro.c')
-rw-r--r--macro.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/macro.c b/macro.c
index db537a72..1384d6f6 100644
--- a/macro.c
+++ b/macro.c
@@ -1,4 +1,4 @@
-/* $Id: macro.c,v 1.63 2009/03/09 13:17:49 kristaps Exp $ */
+/* $Id: macro.c,v 1.64 2009/03/09 14:19:59 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -180,6 +180,8 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ macro_constant, 0 }, /* Lb */
{ macro_constant_delimited, MDOC_CALLABLE | MDOC_PARSED }, /* Ap */
{ macro_text, 0 }, /* Lp */
+ { macro_text, MDOC_PARSED }, /* Lk */
+ { macro_text, MDOC_PARSED }, /* Mt */
};
const struct mdoc_macro * const mdoc_macros = __mdoc_macros;