Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9701 → Rev 9702

/programs/develop/cmm/main.cpp
36,7 → 36,7
FILE *hout=NULL;
const char *namestartupfile="startup.h--";
 
char outext[4]="kex";
char outext[4] = "com";
short extflag=TRUE;//ðàñøèðåíèå ìîæíî ïðèñâîèòü
//int scrsize;
unsigned char gwarning=FALSE;
301,8 → 301,8
LoadIni((char *)"c--.ini");
for(count=1;count<argc;count++){ //îáðàáîòêà êîìàíäíîé ñòðîêè
//if(argv[count][0]=='/'||argv[count][0]=='-'){
if(argv[count][0]=='-'){
if(argv[count][0]=='/'||argv[count][0]=='-'){
//if(argv[count][0]=='-'){
if(SelectComand(argv[count]+1,&count)==c_end) BadCommandLine(argv[count]);
}
else{
1721,7 → 1721,12
{
char buf[256];
FILE *diskout;
if(!ext && strlen(ext)) {
sprintf(buf,"%s.%s",rawfilename,ext);
} else {
strcpy(buf, rawfilename);
}
if((diskout=fopen(buf,mode))==NULL){
ErrOpenFile(buf);
exit(e_notcreateoutput);