version 1.90 | | version 1.91 |
---|
| | |
/* | | /* |
* static char *rcsid_c_wiz_c = | | * static char *rcsid_c_wiz_c = |
* "$Id: c_wiz.c,v 1.90 2006/08/11 12:13:02 ryo_saeba Exp $"; | | * "$Id: c_wiz.c,v 1.91 2006/08/20 00:07:12 qal21 Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
/* Item is either stack top, or is a number thus is now stack top, let's remove it */ | | /* Item is either stack top, or is a number thus is now stack top, let's remove it */ |
dm_stack_pop(op->contr); | | dm_stack_pop(op->contr); |
| | |
| | if (tmp->head) |
| | tmp = tmp->head; |
| | |
if (!QUERY_FLAG(tmp, FLAG_REMOVED)) { | | if (!QUERY_FLAG(tmp, FLAG_REMOVED)) { |
new_draw_info(NDI_UNIQUE, 0, op, "Warning, item wasn't removed."); | | new_draw_info(NDI_UNIQUE, 0, op, "Warning, item wasn't removed."); |
remove_ob(tmp); | | remove_ob(tmp); |
} | | } |
| | |
if (tmp->head) | | |
tmp = tmp->head; | | |
free_object(tmp); | | free_object(tmp); |
return 1; | | return 1; |
} | | } |