Bug fixed: fill_item() should initialize item->it_desirable to TRUE.

This commit is contained in:
bal 1984-12-04 14:41:20 +00:00
parent 695a914eb3
commit 8d659c015f

View file

@ -85,6 +85,7 @@ fill_item(item,l)
line_p l;
{
item->it_type = item_type(l);
item->it_desirable = TRUE;
switch(item->it_type) {
case GLOBL_ADDR:
item->i_t.it_obj = OBJ(l);