Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 957 → Rev 958

/svarcom/trunk/command.c
937,7 → 937,9
/* I should never ever land here */
outputnl("INTERNAL ERR: INVALID CMDRES");
 
} while ((rmod->flags & FLAG_EXEC_AND_QUIT) == 0);
/* repeat unless /C was asked - but always finish running an ongoing batch
* file (otherwise only first BAT command would be executed with /C) */
} while (((rmod->flags & FLAG_EXEC_AND_QUIT) == 0) || (rmod->bat != NULL));
 
sayonara(rmod);
return(0);
/svarcom/trunk/history.txt
6,6 → 6,7
=== ver 2022.1 (xx.xx.xxxx) ==================================================
 
- added CALL support for calling batch files from within batch files
- fixed batch processing with /C (was executing only first command)
 
 
=== ver 2022.0 (01.02.2022) ==================================================