diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-01-12 16:39:57 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-01-12 16:39:57 +0000 |
commit | 1ffa508fd07870fb2094e48de2c5207abd02fc6c (patch) | |
tree | 5386c805f76801425f3e589242f263837395f6c2 /mdocml.c | |
parent | f41349a945984d15e04b7576ea08bc651631d093 (diff) | |
download | mandoc-1ffa508fd07870fb2094e48de2c5207abd02fc6c.tar.gz |
*** empty log message ***
Diffstat (limited to 'mdocml.c')
-rw-r--r-- | mdocml.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -238,12 +238,16 @@ print_node(const struct mdoc_node *n, int indent) for (i = 0; i < (int)argc; i++) { (void)printf(" -%s", mdoc_argnames[argv[i].arg]); + if (j > 0) + (void)printf(" ["); for (j = 0; j < (int)argv[i].sz; j++) - (void)printf(" \"%s\"", argv[i].value[j]); + (void)printf(" [%s]", argv[i].value[j]); + if (j > 0) + (void)printf(" ]"); } for (i = 0; i < (int)sz; i++) - (void)printf(" \"%s\"", params[i]); + (void)printf(" [%s]", params[i]); (void)printf(" %d:%d\n", n->line, n->pos); |