Difference for server/c_wiz.c from version 1.58 to 1.59


version 1.58 version 1.59
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_c_wiz_c =   * static char *rcsid_c_wiz_c =
  *   "$Id: c_wiz.c,v 1.58 2005/03/06 20:38:54 akirschbaum Exp $";   *   "$Id: c_wiz.c,v 1.59 2005/03/20 06:22:59 mwedel Exp $";
  */   */
   
 /*  /*
Line 990
 
Line 990
     if ( from != STACK_FROM_STACK )      if ( from != STACK_FROM_STACK )
         /* 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 );
   
       /* Always work on the head - otherwise object will get in odd state */
       if (tmp->head) tmp=tmp->head;
     remove_ob(tmp);      remove_ob(tmp);
     return 1;      return 1;
 }  }
Line 1014
 
Line 1017
         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;
 }  }


Legend:
line(s) removed in v.1.58 
line(s) changed
 line(s) added in v.1.59

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:30