diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-22 19:23:48 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-22 19:23:48 +0000 |
commit | c9f801d9804d2a25f795302e5db93880df4f4d87 (patch) | |
tree | 7b147f5444b71e4c9386eeac77ed155e23156314 /validate.c | |
parent | f25db392c434984141c67fb983517a0dd28c4fe1 (diff) | |
download | mandoc-c9f801d9804d2a25f795302e5db93880df4f4d87.tar.gz |
Fixed `.Pf' handling.
System now supports all mdocml manual pages.
Diffstat (limited to 'validate.c')
-rw-r--r-- | validate.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -140,6 +140,7 @@ static v_post posts_bl[] = { herr_eq0, bwarn_ge1, post_bl, NULL }; static v_post posts_it[] = { post_it, NULL }; static v_post posts_in[] = { ewarn_eq1, NULL }; static v_post posts_ss[] = { herr_ge1, NULL }; +static v_post posts_pf[] = { eerr_eq1, NULL }; static v_post posts_pp[] = { ewarn_eq0, NULL }; static v_post posts_ex[] = { eerr_le1, post_ex, NULL }; static v_post posts_an[] = { post_an, NULL }; @@ -231,7 +232,7 @@ const struct valids mdoc_valids[MDOC_MAX] = { { NULL, NULL }, /* Nx */ { NULL, NULL }, /* Ox */ { NULL, NULL }, /* Pc */ - { NULL, NULL }, /* Pf */ + { NULL, posts_pf }, /* Pf */ { NULL, NULL }, /* Po */ { NULL, posts_wline }, /* Pq */ { NULL, NULL }, /* Qc */ |