diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-08 20:50:12 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-08 20:50:12 +0000 |
commit | 68fba3271bc79716f1743bd49dd75bbad59cb00d (patch) | |
tree | 374e9c51e1783cab9b88a0aa6ae06738835e24a0 /macro.c | |
parent | 946b90960143fc668d4b43c0acd0f2b0918fe14c (diff) | |
download | mandoc-68fba3271bc79716f1743bd49dd75bbad59cb00d.tar.gz |
Added .Ap.
Diffstat (limited to 'macro.c')
-rw-r--r-- | macro.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -181,6 +181,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { macro_obsolete, 0 }, /* Fr */ { macro_constant, 0 }, /* Ud */ { macro_constant, 0 }, /* Lb */ + { macro_constant_delimited, MDOC_CALLABLE | MDOC_PARSED }, /* Ap */ }; const struct mdoc_macro * const mdoc_macros = __mdoc_macros; @@ -1204,6 +1205,8 @@ macro_constant_delimited(MACRO_PROT_ARGS) */ switch (tok) { + case (MDOC_Ap): + /* FALLTHROUGH */ case (MDOC_No): /* FALLTHROUGH */ case (MDOC_Ns): |