=================================================================== RCS file: /cvs/mandoc/Attic/macro.c,v retrieving revision 1.61 retrieving revision 1.63 diff -u -p -r1.61 -r1.63 --- mandoc/Attic/macro.c 2009/03/08 20:50:12 1.61 +++ mandoc/Attic/macro.c 2009/03/09 13:17:49 1.63 @@ -1,4 +1,4 @@ -/* $Id: macro.c,v 1.61 2009/03/08 20:50:12 kristaps Exp $ */ +/* $Id: macro.c,v 1.63 2009/03/09 13:17:49 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -21,18 +21,15 @@ #include #include #include -#ifdef __linux__ -#include -#endif +#include "private.h" + /* * This has scanning/parsing routines, each of which extract a macro and * its arguments and parameters, then know how to progress to the next * macro. */ -#include "private.h" - static int macro_obsolete(MACRO_PROT_ARGS); static int macro_constant(MACRO_PROT_ARGS); static int macro_constant_scoped(MACRO_PROT_ARGS); @@ -182,6 +179,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { macro_constant, 0 }, /* Ud */ { macro_constant, 0 }, /* Lb */ { macro_constant_delimited, MDOC_CALLABLE | MDOC_PARSED }, /* Ap */ + { macro_text, 0 }, /* Lp */ }; const struct mdoc_macro * const mdoc_macros = __mdoc_macros;