=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/tree.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- src/usr.bin/mandoc/tree.c 2013/12/24 19:10:34 1.19 +++ src/usr.bin/mandoc/tree.c 2014/03/08 15:50:21 1.20 @@ -1,7 +1,7 @@ -/* $Id: tree.c,v 1.19 2013/12/24 19:10:34 schwarze Exp $ */ +/* $Id: tree.c,v 1.20 2014/03/08 15:50:21 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2011 Kristaps Dzonsons - * Copyright (c) 2013 Ingo Schwarze + * Copyright (c) 2013, 2014 Ingo Schwarze * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -248,7 +248,10 @@ } 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)