summaryrefslogtreecommitdiffstats
path: root/macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-08 20:50:12 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-08 20:50:12 +0000
commit68fba3271bc79716f1743bd49dd75bbad59cb00d (patch)
tree374e9c51e1783cab9b88a0aa6ae06738835e24a0 /macro.c
parent946b90960143fc668d4b43c0acd0f2b0918fe14c (diff)
downloadmandoc-68fba3271bc79716f1743bd49dd75bbad59cb00d.tar.gz
Added .Ap.
Diffstat (limited to 'macro.c')
-rw-r--r--macro.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/macro.c b/macro.c
index e1de6b53..b68439eb 100644
--- a/macro.c
+++ b/macro.c
@@ -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):