Some new commands and improvements

This commit is contained in:
ceriel
1990-09-20 17:51:14 +00:00
parent b68cb52de6
commit 76f1cf30ee
17 changed files with 298 additions and 41 deletions

View File

@@ -65,6 +65,7 @@ item_addr_actions(a)
eval_cond(p->t_args[1])) stopping = 1;
break;
case OP_DUMP:
case OP_DISPLAY:
break;
default:
assert(0);
@@ -75,6 +76,18 @@ item_addr_actions(a)
return stopping;
}
handle_displays()
{
register p_item i = item_list.il_first;
while (i) {
register p_tree p = i->i_node;
if (p->t_oper == OP_DISPLAY) do_print(p);
i = i->i_next;
}
}
add_to_item_list(p)
p_tree p;
{