diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-30 23:59:59 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-30 23:59:59 +0000 |
commit | 789a195678bbeda4661373b1dcbd5839588f75ba (patch) | |
tree | 82f197f9a59961f9ad871839be37ceffd186d725 /mdoc_argv.c | |
parent | e93c1f56ea10968e077baa60d6f0bd277eb4cdd4 (diff) | |
download | mandoc-789a195678bbeda4661373b1dcbd5839588f75ba.tar.gz |
Have mdoc_args() use enum mdoc_list instead of scanning.
Diffstat (limited to 'mdoc_argv.c')
-rw-r--r-- | mdoc_argv.c | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/mdoc_argv.c b/mdoc_argv.c index f67a08bd..a01791aa 100644 --- a/mdoc_argv.c +++ b/mdoc_argv.c @@ -339,7 +339,7 @@ enum margserr mdoc_args(struct mdoc *m, int line, int *pos, char *buf, enum mdoct tok, char **v) { - int fl, c, i; + int fl; struct mdoc_node *n; fl = mdoc_argflags[tok]; @@ -347,26 +347,13 @@ mdoc_args(struct mdoc *m, int line, int *pos, if (MDOC_It != tok) return(args(m, line, pos, buf, fl, v)); - /* - * The `It' macro is a special case, as it acquires parameters from its - * parent `Bl' context, specifically, we're concerned with -column. - */ - for (n = m->last; n; n = n->parent) - if (MDOC_BLOCK == n->type && MDOC_Bl == n->tok) + if (MDOC_Bl == n->tok) break; - assert(n); - c = (int)(n->args ? n->args->argc : 0); - assert(c > 0); - - /* LINTED */ - for (i = 0; i < c; i++) { - if (MDOC_Column != n->args->argv[i].arg) - continue; + if (n && LIST_column == n->data.list) { fl |= ARGS_TABSEP; fl &= ~ARGS_DELIM; - break; } return(args(m, line, pos, buf, fl, v)); |