=================================================================== RCS file: /cvs/mandoc/tree.c,v retrieving revision 1.19 retrieving revision 1.27 diff -u -p -r1.19 -r1.27 --- mandoc/tree.c 2010/01/01 17:14:31 1.19 +++ mandoc/tree.c 2011/01/01 14:09:21 1.27 @@ -1,6 +1,6 @@ -/* $Id: tree.c,v 1.19 2010/01/01 17:14:31 kristaps Exp $ */ +/* $Id: tree.c,v 1.27 2011/01/01 14:09:21 kristaps Exp $ */ /* - * Copyright (c) 2008, 2009 Kristaps Dzonsons + * Copyright (c) 2008, 2009 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -23,6 +23,7 @@ #include #include +#include "mandoc.h" #include "mdoc.h" #include "man.h" #include "main.h" @@ -57,6 +58,7 @@ print_mdoc(const struct mdoc_node *n, int indent) size_t argc, sz; char **params; struct mdoc_argv *argv; + const struct tbl_dat *dp; argv = NULL; argc = sz = 0; @@ -73,7 +75,10 @@ print_mdoc(const struct mdoc_node *n, int indent) t = "block-head"; break; case (MDOC_BODY): - t = "block-body"; + if (n->end) + t = "body-end"; + else + t = "block-body"; break; case (MDOC_TAIL): t = "block-tail"; @@ -84,11 +89,16 @@ print_mdoc(const struct mdoc_node *n, int indent) case (MDOC_TEXT): t = "text"; break; + case (MDOC_TBL): + t = "tbl"; + break; default: abort(); /* NOTREACHED */ } + p = NULL; + switch (n->type) { case (MDOC_TEXT): p = n->string; @@ -116,6 +126,8 @@ print_mdoc(const struct mdoc_node *n, int indent) argc = n->args->argc; } break; + case (MDOC_TBL): + break; case (MDOC_ROOT): p = "root"; break; @@ -125,24 +137,37 @@ print_mdoc(const struct mdoc_node *n, int indent) } for (i = 0; i < indent; i++) - (void)printf(" "); - (void)printf("%s (%s)", p, t); + putchar('\t'); - for (i = 0; i < (int)argc; i++) { - (void)printf(" -%s", mdoc_argnames[argv[i].arg]); - if (argv[i].sz > 0) - (void)printf(" ["); - for (j = 0; j < (int)argv[i].sz; j++) - (void)printf(" [%s]", argv[i].value[j]); - if (argv[i].sz > 0) - (void)printf(" ]"); - } + if (n->span) { + assert(NULL == p); + printf("tbl: "); + for (dp = n->span->first; dp; dp = dp->next) { + printf("[%s]", dp->string); + if (dp->next) + putchar(' '); + } + } else { + printf("%s (%s)", p, t); - for (i = 0; i < (int)sz; i++) - (void)printf(" [%s]", params[i]); + for (i = 0; i < (int)argc; i++) { + printf(" -%s", mdoc_argnames[argv[i].arg]); + if (argv[i].sz > 0) + printf(" ["); + for (j = 0; j < (int)argv[i].sz; j++) + printf(" [%s]", argv[i].value[j]); + if (argv[i].sz > 0) + printf(" ]"); + } + + for (i = 0; i < (int)sz; i++) + printf(" [%s]", params[i]); - (void)printf(" %d:%d\n", n->line, n->pos); + printf(" %d:%d", n->line, n->pos); + } + putchar('\n'); + if (n->child) print_mdoc(n->child, indent + 1); if (n->next) @@ -155,6 +180,7 @@ print_man(const struct man_node *n, int indent) { const char *p, *t; int i; + const struct tbl_dat *dp; switch (n->type) { case (MAN_ROOT): @@ -175,11 +201,16 @@ print_man(const struct man_node *n, int indent) case (MAN_BODY): t = "block-body"; break; + case (MAN_TBL): + t = "tbl"; + break; default: abort(); /* NOTREACHED */ } + p = NULL; + switch (n->type) { case (MAN_TEXT): p = n->string; @@ -196,14 +227,28 @@ print_man(const struct man_node *n, int indent) case (MAN_ROOT): p = "root"; break; + case (MAN_TBL): + break; default: abort(); /* NOTREACHED */ } for (i = 0; i < indent; i++) - (void)printf(" "); - (void)printf("%s (%s) %d:%d\n", p, t, n->line, n->pos); + putchar('\t'); + + if (n->span) { + assert(NULL == p); + printf("tbl: "); + for (dp = n->span->first; dp; dp = dp->next) { + printf("[%s]", dp->string); + if (dp->next) + putchar(' '); + } + } else + printf("%s (%s) %d:%d", p, t, n->line, n->pos); + + putchar('\n'); if (n->child) print_man(n->child, indent + 1);