Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 376 → Rev 377

/svarcom/command.c
359,7 → 359,10
{
int ecode = cmd_process(*rmod_envseg, cmdline, BUFFER);
if (ecode >= 0) *lastexitcode = ecode;
if (ecode >= -1) continue; /* internal command executed */
if (ecode >= -1) { /* internal command executed */
outputnl("");
continue;
}
}
 
/* if here, then this was not an internal command */