diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-02-06 22:05:20 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-02-06 22:05:20 +0000 |
commit | 0e41b47c56cfe4131e7f3424fde8ce7fbc7a94e3 (patch) | |
tree | 745274842b2c5469ec195887b0c305e2c9509163 /man.c | |
parent | 7b8e2174fd0e7158995a5790c05254f664943dcc (diff) | |
download | mandoc-0e41b47c56cfe4131e7f3424fde8ce7fbc7a94e3.tar.gz |
Use tbl_span line number for warnings/errors.
Diffstat (limited to 'man.c')
-rw-r--r-- | man.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -371,7 +371,7 @@ man_addspan(struct man *m, const struct tbl_span *sp) assert( ! (MAN_HALT & m->flags)); if ( ! man_span_alloc(m, sp)) return(0); - return(man_descope(m, 0, 0)); + return(man_descope(m, sp->line, 0)); } static int |