diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-09 14:19:59 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-09 14:19:59 +0000 |
commit | e5a9cad1c94b10a303a391c74d8b4dd29c494cce (patch) | |
tree | 9af1bcf9f9faedf1b3c6a1f29f3507e47d6f0b27 /macro.c | |
parent | 028cb9cf2041bbee0ed488b669254a2a8bc9ccb9 (diff) | |
download | mandoc-e5a9cad1c94b10a303a391c74d8b4dd29c494cce.tar.gz |
Added `Mt' and `Lk' macros (NetBSD).
Diffstat (limited to 'macro.c')
-rw-r--r-- | macro.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |