aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tree.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-03-08 15:50:41 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-03-08 15:50:41 +0000
commit49fc5b876caef96271d1484f9279fd423d9b04ff (patch)
tree2481fb8c1879205cf8562044b10854e2c7d3b99c /tree.c
parentb84bd4ac18eff0a7d806eaa88660b64abf998cf2 (diff)
downloadmandoc-49fc5b876caef96271d1484f9279fd423d9b04ff.tar.gz
mandoc-49fc5b876caef96271d1484f9279fd423d9b04ff.tar.zst
mandoc-49fc5b876caef96271d1484f9279fd423d9b04ff.zip
To find out whether .TP head arguments are same-line or next-line arguments,
use the MAN_LINE flag instead of the man_node line member. This is required such that user-defined macros wrapping .TP work correctly. Issue found by Havard Eidnes in Tcl_NewStringObj(3), reported via the NetBSD bug tracking system and Thomas Klausner <wiz at NetBSD>.
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/tree.c b/tree.c
index fdb70e1b..4e417052 100644
--- a/tree.c
+++ b/tree.c
@@ -1,7 +1,7 @@
-/* $Id: tree.c,v 1.50 2013/12/24 19:11:46 schwarze Exp $ */
+/* $Id: tree.c,v 1.51 2014/03/08 15:50:41 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2013 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -252,7 +252,10 @@ print_man(const struct man_node *n, int indent)
} else {
for (i = 0; i < indent; i++)
putchar('\t');
- printf("%s (%s) %d:%d\n", p, t, n->line, n->pos);
+ printf("%s (%s) ", p, t);
+ if (MAN_LINE & n->flags)
+ putchar('*');
+ printf("%d:%d\n", n->line, n->pos);
}
if (n->child)