Subversion Repositories Kolibri OS

Rev

Rev 3245 | Rev 4106 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3245 Rev 3988
Line 126... Line 126...
126
con_set_cursor_height(con_get_font_height()-1);
126
con_set_cursor_height(con_get_font_height()-1);
Line 127... Line 127...
127
 
127
 
Line -... Line 128...
-
 
128
ALIASES = malloc(128*1024);
-
 
129
 
-
 
130
if (PARAM[0] == 0) strcpy(CMD, ".shell");
128
ALIASES = malloc(128*1024);
131
else
-
 
132
{
-
 
133
	if (PARAM[0] == '/')
-
 
134
	{
-
 
135
		strcpy(cur_dir, PARAM);
129
 
136
		*strrchr(cur_dir, '/')=0;
130
if (strlen(PARAM) > 0)
137
	}
131
	strcpy(CMD, PARAM);
-
 
Line 132... Line 138...
132
else 
138
	strcpy(CMD, PARAM);
Line 133... Line 139...
133
	strcpy(CMD, ".shell");
139
}
134
 
140