diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-29 10:10:35 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-29 10:10:35 +0000 |
commit | e34909a15faed90ad1d9efd5e6d44270ab386b5c (patch) | |
tree | 5bc2959eed1e9d8a08a9ec591c11ba2ac015c601 /man_validate.c | |
parent | 40d86894cf83a9f39b0d85e391c7c16574971889 (diff) | |
download | mandoc-e34909a15faed90ad1d9efd5e6d44270ab386b5c.tar.gz |
Final (?) fix to issue pointed out by Sascha Wildner: roff instructions clobbering prior scope rules and line modes.
Diffstat (limited to 'man_validate.c')
-rw-r--r-- | man_validate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man_validate.c b/man_validate.c index b69f9e68..5778a3c6 100644 --- a/man_validate.c +++ b/man_validate.c @@ -59,7 +59,7 @@ static v_check posts_part[] = { check_part, NULL }; static v_check posts_sec[] = { check_sec, NULL }; static v_check posts_le1[] = { check_le1, NULL }; static v_check pres_bline[] = { check_bline, NULL }; -static v_check pres_roff[] = { check_bline, check_roff, NULL }; +static v_check pres_roff[] = { check_roff, NULL }; static const struct man_valid man_valids[MAN_MAX] = { { NULL, posts_eq0 }, /* br */ |