Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 2322 → Rev 2323

/programs/system/shell/cmd/cmd_cd.c
37,10 → 37,13
else
{
strcpy(temp, cur_dir);
if (cur_dir[strlen(cur_dir)-1] != '/')
strcat(temp, "/");
strcat(temp, dir);
 
if ( dir_check(temp) )
{
 
strcpy(cur_dir, temp);
return TRUE;
}
/programs/system/shell/compile_eng.bat
1,5 → 1,5
@echo off
erase shell.kex lang.h
erase lang.h
echo #define LANG_ENG 1 > lang.h
fasm start.asm start.o
gcc -c shell.c
/programs/system/shell/compile_rus.bat
1,5 → 1,5
@echo off
erase shell.kex lang.h
erase lang.h
echo #define LANG_RUS 1 > lang.h
fasm start.asm start.o
gcc -c shell.c
/programs/system/shell/globals.h
1,5 → 1,5
 
#define SHELL_VERSION "0.4.9"
#define SHELL_VERSION "0.4.91"
 
extern char PATH[256];
extern char PARAM[256];