Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4308 → Rev 4309

/programs/system/shell/History.txt
1,3 → 1,7
Shell 0.7.3 // 28.11.2013 // Albom
* ˆá¯à ¢«¥­  ®è¨¡ª  á ᨬ¢®«®¬ % ¢ ¨áâ®à¨¨ ª®¬ ­¤
 
 
Shell 0.7.2 // 26.10.2013 // Albom
* ” ©« .shell ¯¥à¥­¥á¥­ ¢ /sys/settings/
* ˆá¯à ¢«¥­  ª®¬ ­¤  "cd .."
/programs/system/shell/globals.h
1,5 → 1,5
 
#define SHELL_VERSION "0.7.2"
#define SHELL_VERSION "0.7.3"
 
extern char PATH[256];
extern char PARAM[256];
/programs/system/shell/modules/module_command.c
178,7 → 178,7
else
CMD_NUM = 0;
 
printf( CMD_HISTORY[CMD_NUM] );
printf( "%s", CMD_HISTORY[CMD_NUM] );
strcpy(CMD, CMD_HISTORY[CMD_NUM]);
cmdLen = strlen(CMD);
cmdPos = strlen(CMD);
203,7 → 203,7
else
CMD_NUM = CMD_HISTORY_NUM_REAL-1;
 
printf( CMD_HISTORY[CMD_NUM] );
printf( "%s", CMD_HISTORY[CMD_NUM] );
strcpy(CMD, CMD_HISTORY[CMD_NUM]);
cmdLen = strlen(CMD);
cmdPos = strlen(CMD);