+ continue;
+ }
+
+ /* Check: duplicate auxiliary arguments. */
+
+ if (dup && ! mdoc_nmsg(mdoc, n, MANDOCERR_ARGVREP))
+ return(0);
+
+ if (comp && ! dup)
+ n->data.Bl->comp = comp;
+ if (offs && ! dup)
+ n->data.Bl->offs = offs;
+ if (width && ! dup)
+ n->data.Bl->width = width;
+
+ /* Check: multiple list types. */
+
+ if (LIST__NONE != lt && n->data.Bl->type != LIST__NONE)
+ if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_LISTREP))
+ return(0);
+
+ /* Assign list type. */
+
+ if (LIST__NONE != lt && n->data.Bl->type == LIST__NONE) {
+ n->data.Bl->type = lt;
+ /* Set column information, too. */
+ if (LIST_column == lt) {
+ n->data.Bl->ncols =
+ n->args->argv[i].sz;
+ n->data.Bl->cols = (const char **)
+ n->args->argv[i].value;
+ }