diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-12 11:58:22 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-12 11:58:22 +0000 |
commit | 9182860daa80b4a3002521ca4fdbd780d009b616 (patch) | |
tree | 1b81397d2d235aab70575465e1b8dd9152d84674 /mdoc_argv.c | |
parent | 16173bda3531a2bb54b45b2e327c8b7e2cf37fd6 (diff) | |
download | mandoc-9182860daa80b4a3002521ca4fdbd780d009b616.tar.gz |
`Bl' is now using a struct instead of a single enum mdoc_list for its
cached values. You can probably guess where this is going.
Diffstat (limited to 'mdoc_argv.c')
-rw-r--r-- | mdoc_argv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_argv.c b/mdoc_argv.c index 197443cd..febe3d04 100644 --- a/mdoc_argv.c +++ b/mdoc_argv.c @@ -359,7 +359,7 @@ mdoc_args(struct mdoc *m, int line, int *pos, if (MDOC_Bl == n->tok) break; - if (n && LIST_column == n->data.list) { + if (n && LIST_column == n->data.Bl.type) { fl |= ARGS_TABSEP; fl &= ~ARGS_DELIM; } |