Ron wrote:
>Anybody want to confirm before we send the bug report to [EMAIL PROTECTED]
>?
Good idea - I'll confirm, this mail is CCed to [EMAIL PROTECTED]
Michael, in GuiEvent.C under key==delete
Change:
unlink(ptr);
Into:
if(ptr[1] == ':')
unlink(ptr);
else
{
char curdir[MAXPATH];
strcpy(curdir, "X:\\");
curdir[0] = 'A' + getdisk();
getcurdir(0, curdir + 3);
strcat(curdir, "\\"); //needed?
strcat(curdir, ptr);
unlink(curdir);
}
This information is provided AS-IS (ie. I didn't compile and try). And only
works in DOS since I can't figure out how to do it in Linux right now (or
perhaps it works as it is in 1.66 anyway?).
BTW: I've said this before (I think) - Glenn and Clarence, it's much faster
to check the source for errors instead of debating about it ;-)
//Bernie