Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4105 → Rev 4106

/programs/system/shell/shell.c
128,7 → 128,13
 
ALIASES = malloc(128*1024);
 
if (PARAM[0] == 0) strcpy(CMD, ".shell");
if (PARAM[0] == 0)
{
strcpy(CMD, cur_dir);
strcat(CMD, ".shell");
if ( !file_check(CMD) )
strcpy(CMD, "/sys/settings/.shell");
}
else
{
if (PARAM[0] == '/')