mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[qfcc] Show line numbers in block sub expressions
Seems more useful than expression index.
This commit is contained in:
parent
5fd63b95db
commit
15d4186fff
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ print_block (dstring_t *dstr, expr_t *e, int level, int id, expr_t *next)
|
|||
"</tr>\n", indent + 4, "");
|
||||
for (se = e->e.block.head, i = 0; se; se = se->next, i++)
|
||||
dasprintf (dstr, "%*s<tr><td>%d</td><td port=\"b%d\">%s</td></tr>\n",
|
||||
indent + 4, "", i, i, expr_names[se->type]);
|
||||
indent + 4, "", se->line, i, expr_names[se->type]);
|
||||
dasprintf (dstr, "%*s</table>\n", indent + 2, "");
|
||||
dasprintf (dstr, "%*s>];\n", indent, "");
|
||||
|
||||
|
|
Loading…
Reference in a new issue