diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-01-20 13:44:05 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-01-20 13:44:05 +0000 |
commit | 50f9604d3b055e8ec8c5617c792e62d6e01219a3 (patch) | |
tree | 39fcd3980a3ce1ed22e07f3f0b0d813f92061772 /validate.c | |
parent | ffd36f32dbbe968941923914f7f8630c797a1206 (diff) | |
download | mandoc-50f9604d3b055e8ec8c5617c792e62d6e01219a3.tar.gz |
Re-merged old port-building routines.
Diffstat (limited to 'validate.c')
-rw-r--r-- | validate.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -21,6 +21,14 @@ #include "private.h" +/* + * Pre- and post-validate macros as they're parsed. Pre-validation + * occurs when the macro has been detected and its arguments parsed. + * Post-validation occurs when all child macros have also been parsed. + * In the ELEMENT case, this is simply the parameters of the macro; in + * the BLOCK case, this is the HEAD, BODY, TAIL and so on. + */ + typedef int (*v_pre)(struct mdoc *, struct mdoc_node *); typedef int (*v_post)(struct mdoc *); |