=================================================================== RCS file: /cvs/mandoc/Attic/macro.c,v retrieving revision 1.62 retrieving revision 1.64 diff -u -p -r1.62 -r1.64 --- mandoc/Attic/macro.c 2009/03/08 20:57:35 1.62 +++ mandoc/Attic/macro.c 2009/03/09 14:19:59 1.64 @@ -1,4 +1,4 @@ -/* $Id: macro.c,v 1.62 2009/03/08 20:57:35 kristaps Exp $ */ +/* $Id: macro.c,v 1.64 2009/03/09 14:19:59 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); @@ -183,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;