summaryrefslogtreecommitdiffstatshomepage
path: root/mdocml.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdocml.c')
-rw-r--r--mdocml.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/mdocml.c b/mdocml.c
index ec53aa10..f3afbf21 100644
--- a/mdocml.c
+++ b/mdocml.c
@@ -1,4 +1,4 @@
-/* $Id: mdocml.c,v 1.40 2009/01/12 12:52:21 kristaps Exp $ */
+/* $Id: mdocml.c,v 1.41 2009/01/12 16:39:57 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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);