From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id p01E9MxV019215 for ; Sat, 1 Jan 2011 09:09:23 -0500 (EST) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id p01E9M25029157; Sat, 1 Jan 2011 09:09:22 -0500 (EST) Date: Sat, 1 Jan 2011 09:09:22 -0500 (EST) Message-Id: <201101011409.p01E9M25029157@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Make -Ttree a bit more readable. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Make -Ttree a bit more readable. Modified Files: -------------- mdocml: tree.c Revision Data ------------- Index: tree.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/tree.c,v retrieving revision 1.26 retrieving revision 1.27 diff -Ltree.c -Ltree.c -u -p -r1.26 -r1.27 --- tree.c +++ tree.c @@ -239,8 +239,9 @@ print_man(const struct man_node *n, int if (n->span) { assert(NULL == p); + printf("tbl: "); for (dp = n->span->first; dp; dp = dp->next) { - printf("tbl: [%s]", dp->string); + printf("[%s]", dp->string); if (dp->next) putchar(' '); } -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv