comparison win/dw.c @ 147:b479002e013f

Upped the DW revision to 1.0, and merged with the latest code in the FX repository.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 23 Oct 2002 14:34:29 +0000
parents 2584a4646b41
children 2a0d7b57a6da
comparison
equal deleted inserted replaced
146:add6b46310c2 147:b479002e013f
7000 { 7000 {
7001 if(all || stricmp(tmp->varname, varname) == 0) 7001 if(all || stricmp(tmp->varname, varname) == 0)
7002 { 7002 {
7003 if(!prev) 7003 if(!prev)
7004 { 7004 {
7005 *root = tmp->next;
7005 free(tmp->varname); 7006 free(tmp->varname);
7006 free(tmp); 7007 free(tmp);
7007 *root = tmp->next;
7008 return 0; 7008 return 0;
7009 } 7009 }
7010 else 7010 else
7011 { 7011 {
7012 prev->next = tmp->next; 7012 prev->next = tmp->next;