inpcom.c, fcn tprint: level information no longer available

This commit is contained in:
h_vogt 2017-03-12 11:51:55 +01:00 committed by rlar
parent 9b482cda1e
commit 86eea1c672
1 changed files with 0 additions and 4 deletions

View File

@ -5723,10 +5723,6 @@ tprint(struct line *t, int numb)
for (tmp = t; tmp; tmp = tmp->li_next)
if (*(tmp->li_line) != '*') {
fprintf(fd, "%6d %6d %s", tmp->li_linenum_orig, tmp->li_linenum, tmp->li_line);
fprintf(fd, " level: ");
struct nscope *x = tmp->level;
for (; x; x = x->next)
fprintf(fd, "/%p", tmp->level); /* fixme */
fprintf(fd, "\n");
}
fprintf(fd, "\n*********************************************************************************\n");