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 193d318e2f
commit 3ba6a9a47a

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);