Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 532 → Rev 533

/svarcom/trunk/cmd/rem.c
26,7 → 26,7
* rem
*/
 
static int cmd_rem(struct cmd_funcparam *p) {
static enum cmd_result cmd_rem(struct cmd_funcparam *p) {
/* help screen ONLY if /? is the only argument - I do not want to output
* help for ex. for "REM mouse.com /?" */
if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
34,5 → 34,5
outputnl("");
outputnl("REM [comment]");
}
return(-1);
return(CMD_OK);
}