From c744f48b5fc53bd65103347682c3cb21e22e93aa Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 8 Mar 2009 20:50:12 +0000 Subject: Added .Ap. --- macro.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'macro.c') diff --git a/macro.c b/macro.c index 548bc103..265f7dbf 100644 --- a/macro.c +++ b/macro.c @@ -1,4 +1,4 @@ -/* $Id: macro.c,v 1.60 2009/03/08 19:32:03 kristaps Exp $ */ +/* $Id: macro.c,v 1.61 2009/03/08 20:50:12 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -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): -- cgit v1.2.3