+Sat Jul 23 00:58:15 1994 Stu Grossman (grossman@cygnus.com)
+
+ * target.c (unpush_target): Fix handling of removal of top target.
+
Fri Jul 22 17:30:39 1994 Stu Grossman (grossman@cygnus.com)
* Makefile.in: Add stuff to build nlmstub.
{
struct target_stack_item *cur, *prev;
+ t->to_close (0); /* Let it clean up */
+
/* Look for the specified target. Note that we assume that a target
can only occur once in the target stack. */
/* Unchain the target */
if (!prev)
- target_stack = NULL;
+ target_stack = cur->next;
else
prev->next = cur->next;
free (cur); /* Release the target_stack_item */
- (t->to_close) (0); /* Let it clean up */
+ update_current_target ();
+ cleanup_target (¤t_target);
return 1;
}