Experimental upper/lowercase patch

This commit is contained in:
Michiel Broek 2001-10-15 21:17:13 +00:00
parent 1d93315673
commit a1dc702c8a
2 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,7 @@
*
* File ..................: mbfido/tic.c
* Purpose ...............: Process .tic files
* Last modification date : 31-Jul-2001
* Last modification date : 15-Oct-2001
*
*****************************************************************************
* Copyright (C) 1997-2001
@ -239,11 +239,12 @@ int LoadTic(char *inb, char *tfn)
}
if (strncasecmp(Temp, "file ", 5) == 0) {
sprintf(Realname, "%s", Temp+5); /* Moved here for test Michiel/Redy */
if (TIC.Hatch)
strcpy(TIC.TicIn.OrgName, Temp+5);
else
strcpy(TIC.TicIn.OrgName, tl(Temp+5));
sprintf(Realname, "%s", Temp+5);
// sprintf(Realname, "%s", Temp+5); /* Temp removed */
strcpy(TIC.NewName, TIC.TicIn.OrgName);
strcpy(T_File.Name, TIC.TicIn.OrgName);
Kwd = TRUE;

View File

@ -2,7 +2,7 @@
*
* File ..................: ledit.c
* Purpose ...............: Line Editor
* Last modification date : 27-Sep-2001
* Last modification date : 14-Oct-2001
*
*****************************************************************************
* Copyright (C) 1997-2001
@ -1509,6 +1509,7 @@ char *get_color(int c)
case LIGHTMAGENTA: return (char *)"lightmagenta";
case YELLOW: return (char *)"yellow";
case WHITE: return (char *)"white";
default: return NULL;
}
}